function PopUpWindow(url,h,w){
	var wf = "width="+ w + ",height="+ h + ",resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=yes"
	window.open(url,"",wf)
}

function ClickReturn () {
	var bAgent = window.navigator.userAgent; 
	var bAppName = window.navigator.appName;
	if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
		return true; // dont follow link
	else return false; // dont follow link
}

function SetStatus(message){
	window.status = message;
}

function GoBack(){
	window.history.back();
}
