<!-- MC2LABS WIMS, Club Interface for Internet Explorer 5.0, (c) Copyright 2001 by MC2LABS.com -->


<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function siteopen(wswurl) {
	wsw=open(wswurl,"wxtpg","menubar=yes,status=no,location=no,directories=no,toolbar=yes,resizable=yes,scrollbars=yes");
}

function siteopenup() {
        wsw=open(wswurl,"wxtpg","toolbar=no, location=no, directories=no, status=no, menubar=no");
        var wwa = screen.availWidth;
        var wwh = screen.availheight;
        wsw.resizeTo(wwa,wwh);
        wsw.moveTo(0,0);
}


function wCast_DoFSCommand(command, args) {
  var wCastObj = InternetExplorer ? wCast : document.wCast;
	if (command == "messagebox") {
		alert(args);
	}
	if (command == "ckyget") {
		document.wCast.SetVariable("/WIMS:WIMScookie","CLB|"+document.cookie);
	}
	if (command == "ckyset") {
		document.cookie=args+"; expires = Wed, 27 Oct 2014 16:35:00 UTC; path=/";
	}
	if (command == "wwclose") {
		top.close();
	}
	if (command == "wswopen") {
		siteopen(args);
	}
	if (command == "wswopup") {
		siteopenup(args);
	}
	if (command == "wswclose") {
		wsw.close();
	}
	if (command == "wswrel") {
		location.reload();
	}
}

if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub wCast_FSCommand(ByVal command,  ByVal args)\n');
	document.write('  call wCast_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
//-->
