/* HELP FUNCTIE */
sp_left = 100; sp_top = 100; max_width  = 640+20; max_height = 480+20;
var optNN_help='scrollbars=yes,width=650,height=600,left='+sp_left+',top='+sp_top;

function showHelp(errCode, Hotel_ID){
	if(errCode == "201")
	{
	  imgWin=window.open('help.aspx?errCode='+errCode+'&Hotel_ID='+Hotel_ID,'Holidayline',optNN_help);
	}
	else
	{
	  imgWin=window.open('help.aspx?errCode='+errCode,'Holidayline',optNN_help);
	}
}

var optNN_map='scrollbars=yes,width=800,height=600,left='+sp_left+',top='+sp_top;
/* MAP FUNCTIE */
function showMap(cityCode)
{
  imgWin=window.open('hotelMap.aspx?c_code='+cityCode,'Holidayline',optNN_map);
}

function centerPopUp( url, name, width, height, scrollbars ) { 
 
	if( scrollbars == null ) scrollbars = "1" 
 
	str  = ""; 
	str += "resizable=1,"; 
	str += "scrollbars=" + scrollbars + ","; 
	str += "width=" + width + ","; 
	str += "height=" + height + ","; 
 
	if ( window.screen ) { 
		var ah = screen.availHeight - 30; 
		var aw = screen.availWidth - 10; 
 
		var xc = ( aw - width ) / 2; 
		var yc = ( ah - height ) / 2; 
 
		str += ",left=" + xc + ",screenX=" + xc; 
		str += ",top=" + yc + ",screenY=" + yc; 
	} 
	window.open( url, name, str ); 
}