// JavaScript Document
function popup(theURL,w,h) {
	var winName="Osstenta"
	var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=1, resizable=no,width=" + w + ",height=" + h; 
	window.open(theURL,winName,windowprops);
} 
function popup02(theURL,name,left,top,w,h) {
	var winName=name;
	var windowprops ="left=" + left + ",top=" + top + ",toolbar=no,location=no,status=no, menubar=no,scrollbars=1, resizable=no,width=" + w + ",height=" + h; 
	window.open(theURL,winName,windowprops);
} 
