// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function PopUp(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=670,height=495";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}


function PopMap(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=590,height=490";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//-->

