function onloadFunction(){
	alert("");
}

function JSEncode(asInString){
	var sTemp = asInString;
	sTemp = sTemp.replace("'" , "\'");
	sTemp = sTemp.replace("\r" , " ");
	sTemp = sTemp.replace("\n" , " ");
	return sTemp;
}

function openURL(url, asFeature){
	var feature = 'height=900,width=800,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1';
	if (asFeature != "")
	{
		feature = asFeature;
	}
	window.open(url,'', feature, false);
}

function openvenue(aiId){
	var url = "venue_form.asp?venueId=" + aiId + "&viewMode=Y";
	openURL(url, 'width=550,height=250,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=20,top=100');
}

function openvenueReport(aiId){
	var url = "venue_report.asp?venueId_list=" + aiId + "&viewMode=Y";
	openURL(url, 'width=780,height=450,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=20,top=100');
}


function openvenuehistory(aiId){
	var url = "venueHistory_form.asp?venueHistoryId=" + aiId + "&viewMode=Y";
	openURL(url, 'width=600,height=250,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=20,top=100');
}
function openevent(aiId){
	var url = "event_form.asp?eventId=" + aiId + "&viewMode=Y";
	openURL(url, 'width=800,height=650,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=20,top=100');
}
