
/*
Opens a popup window and focusses on it.
Example: <A href="javascript:OpenPopup('plans.aspx')">
*/
function OpenPopup(strURL) {
	var strOptions;
	var remote;
	strOptions = 'top=50,left=50,width=550,height=400,buttons=no,scrollbars=yes,location=no,menubar=no,resizable=no,status=yes,directories=no,toolbar=no';
	remote=window.open(strURL,'TravelPopup', strOptions);
	remote.focus();
}
function OpenResizablePopup(strURL) {
	var strOptions;
	var remote;
	strOptions = 'top=50,left=50,width=550,height=400,buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=yes,directories=no,toolbar=no';
	remote=window.open(strURL,'', strOptions);
	remote.focus();
}
function OpenCompliancePopup(strURL) {
	var strOptions;
	var remote;
	strOptions = 'top=50,left=50,width=400,height=160,buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no,left=400,top=400';
	remote=window.open(strURL,'TravelCompliancePopup', strOptions);
	remote.focus();
}
