\n');
}
function openContactWin() {
regwin = window.open("contact.cfm","regwin","width=400,height=500,scrollbars=no,top=200,left=300,resizable=no");
if(regwin) {
window.regwin.focus();
}
else {
// could not open window -> open new page
location.href = "contact.cfm";
}
}
var minHeight = 650;
var minWidth = 770;
var flashObj = null;
function resizeFlash() {
var docHeight = getWindowHeight();
if(flashObj == null) {
flashObj = isInternetExplorer ? document.all.jimclub : document.jimclub;
}
var newHeight = getWindowHeight();
if(newHeight < minHeight) newHeight = minHeight;
var newWidth = getWindowWidth();
if(newWidth < minWidth) newWidth = minWidth;
flashObj.style.height = newHeight + "px";
flashObj.style.width = newWidth + "px";
}
function getWindowHeight() {
if(window.innerHeight) {
return window.innerHeight;
}
else {
return document.body.clientHeight;
}
}
function getWindowWidth() {
if(window.innerHeight) {
return window.innerWidth;
}
else {
return document.body.clientWidth;
}
}
//-->