var win=null;
function openWindow (url, w, h)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	var varillas = "top="+wint+", left="+winl+", toolbar=no,location=no, status=no,menubar=no,scrollbars=no, resizable=no, width=" + w + ",height=" + h;
	var titulo = "boo boo's studio";
	win = window.open (url, titulo, varillas);
	win.window.focus ();
}

function PopWindow()
{
window.open('www.sicalipsis.com','jalapeņos','width=600,height=450,menubar=no,scrollbars=no,toolbar=no,location=no,directories=no,resizable=no,top=100,left=100');
}
