
// this function is used to open a new window with a close button
function openWin(url,name,w,h) {
	var att = "WIDTH="+ w +",HEIGHT="+ h +",TOOLBAR=NO,SCROLLBARS=NO,MENU=NO,STATUS=NO,RESIZABLE=YES"
	window.open(url,name,att);
	self.name="Main";
}

