// JScript source code
function fnOpenWindow(strUrl,intWidth,intHeight) {
	strNewWin = window.open(strUrl, 'cruiseclub_window', 'width='+intWidth+',height='+intHeight+',status=1,scrollbars=1,resizable=1');
	strNewWin.focus();
}