
//declaramos el objeto para la image de loading
var objLoading=new Element('div',{'class':'divLoading'}).adopt(new Element('img',{'src':'<?=SOURCE_NET_IMAGES."/images/loading1.gif";?>'}));

function loadInit(){
	
	
	new Windoo({
		width: 600,
		height: 500,
		
		title: 'Tienda TecnoGadchets',
		type: 'iframe',
		url:'http://tienda.tecnogadchets.com',
		shadow: false,
		container: false,
		buttons: {menu: true},
		theme: 'alphacube',
		ghost: {resize: false, move: false},
		'buttons': {
					menu: true,
					close: true,
					minimize: true,
					roll: true,
					maximize: true
				},
		onBeforeClose: function(){
			this.preventClose( !confirm('Esta seguro de cerrar Tienda TecnoGadchets?') );
		}
	}).show();

	
}

function openWindows(title, url){
new Windoo({
		width: 640,
		height: 480,
		title: title,
		type: 'iframe',
		shadow: false,
		container: false,
		buttons: {menu: true},
		theme: 'alphacube',
		ghost: {resize: false, move: false},
		url: url,
		'buttons': {
					menu: true,
					close: true,
					minimize: true,
					roll: true,
					maximize: true
				},
		onBeforeClose: function(){
			this.preventClose( !confirm('Esta seguro de cerrar esta vetana?') );
		}
	}).show();
	
	return false;
}