//open window for fair list
function popFair(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=1,toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=1,width=850,height=680";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}


//info
function Submit(formName){
  document.forms[formName].submit();
}


function closeWindow(){
	window.close();
}


function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//open window for osusume
function popFair2(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=1,toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=1,width=650,height=680";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}


