// JavaScript Document

	//alert("appVersion = "+navigator.appVersion+"\n\n"+"userAgent = "+navigator.userAgent);
	if(navigator.appVersion.indexOf("MSIE 6.0") >= 0) { // is ie and less then ver 7 (V6)
		var pngfixscript = document.createElement('script');
		pngfixscript.type = 'text/javascript';
		pngfixscript.src = 'http://www.iclasspro.com/scripts/pngfix.js';
		pngfixscript.setAttribute("language", "javascript");
		document.getElementsByTagName('head')[0].appendChild(pngfixscript);
	} else {
		var runPNGFix = function() {
			return true;
		}
	}

	//JUST TO DOUBLE CHECK
	if(runPNGFix == null || runPNGFix == undefined) {
		var runPNGFix = function() {
			return true;
		}
	}
	
	/*
	// commented out the 2 include scripts below since we're explicitly including them in the 01 template
	var ldwscript = document.createElement('script');
	ldwscript.type = 'text/javascript';
	ldwscript.src = 'http://www.iclasspro.com/scripts/libdivwindow.js';
	ldwscript.setAttribute("language", "javascript");
	document.getElementsByTagName('head')[0].appendChild(ldwscript);

	var ldwstyle = document.createElement('link');
	ldwstyle.type = 'text/css';
	ldwstyle.rel  = 'stylesheet';
	ldwstyle.href = 'http://www.iclasspro.com/scripts/libdivwindow.css';
	document.getElementsByTagName('head')[0].appendChild(ldwstyle);
	*/

//alert("1");
var iClassWindow;


function html_show_iclass_class_list(acctname, locnum) {
	var newcontent = "<table border='0' width='100%' height='100%'><tr><td align='center' valign='middle'><img src='http://www.iclasspro.com/images/loadingw.gif' /></td></tr></table><iframe style='position:absolute; top:31px; left:7px;' frameborder='0' allowtransparency='true' width='100%' height='100%' id='iclass_iframe' src='http://www.iclasspro.com/portal/pp.php?acctname="+acctname+"\&window=list\&location="+locnum+"'></iframe>";
	iClassWindow.setContent(newcontent);
	iClassWindow.showWindow();
	
}

function html_show_iclass_login(acctname, locnum) {
	var newcontent = "<table border='0' width='100%' height='100%'><tr><td align='center' valign='middle'><img src='http://www.iclasspro.com/images/loadingw.gif' /></td></tr></table><iframe style='position:absolute; top:31px; left:7px;' frameborder='0' allowtransparency='true' width='100%' height='100%' id='iclass_iframe' src='http://www.iclasspro.com/portal/pp.php?acctname="+acctname+"\&window=login\&location="+locnum+"'></iframe>";
	iClassWindow.setContent(newcontent);
	iClassWindow.showWindow();
}

function iClassWindowClose() {
	iClassWindow.setContent("");
	return true;
}

function iclass_custom_onload() {
	
	iClassWindow=new dasDivWindow('iClassWindow', 'Parent Portal', 910, 667,  iClassWindowClose);
	iClassWindow.setScrollable(false);
	iClassWindow.showLogo(true);
	
}

if(navigator.appName=="Microsoft Internet Explorer"){
	window.attachEvent("onload", iclass_custom_onload);
}else{
	window.addEventListener("load", iclass_custom_onload, false);
}