// Alquicira.com

// Pop up del Index
/* ######################################### */
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

	winWidth = 800; //Default size
	winheight = 600;

if (screen){ // weeds out older browsers who do not understand screen.width/screen.height
    winWidth = screen.width;
    winHeight = screen.height;
    winWidth = winWidth;
	};// this function calls a popupWindow where
	// win is the page address i.e. '../page.htm'

function popupWindow(win){	
	newWindow = window.open(win,'newWin','toolbar=yes,location=no,scrollbars=yes,status=yes,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
	};
