// JavaScript Document


var flash
function popwin(theURL, width, height) {

	if(flash == null || flash.closed) {
		flash = window.open(theURL, "popup", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height + ",top=0,left=100");
	} else {
		flash.close()
		flash = window.open(theURL, "popup", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height + ",top=0,left=100");
	}
}


function NewWindow(mypage,myname,w,h,scroll){
var winl = (screen.width-w)/2.2;
var wint = (screen.height-h)/1.8;
var settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable=no';
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}



