function OpenLink(dest) {
	window.open(dest,"","menubar=1,scrollbars=1,toolbar=1,status=1,resizable=1,height=300,width=600");
}
 
function Opencourse(dest) {
	window.open(dest,"","menubar=1,scrollbars=1,toolbar=1,status=1,resizable=1,height=480,width=800");
	
}
 
function OpenFile(dst){
	var newwindow
	var destin=dst
	var texta='<HTML><BODY bgcolor="#EEEEEE"><P ALIGN="CENTER"><FONT FACE="ARIAL" SIZE="4" COLOR="#00579b"><B>Click here </B></FONT><a href=';
	var textb= '><IMG src="images/OpenBook2.gif" width=32 height=32 border=0></A> <FONT FACE="ARIAL" SIZE="4" COLOR="#000000"><B>to open<BR><BR>OR</B></FONT><BR><BR> <FONT FACE="ARIAL" SIZE="4" COLOR="#00579b"><B>Right-Click here</B></FONT> <a href=';
	var textc = '><IMG src="images/FileFolder.gif"  width=32 height=32 border=0></A><FONT FACE="ARIAL" SIZE="4" COLOR="#000000"><B> and select <I>Save Target </I><BR>to download the file</B></FONT></P></BODY></HTML>';
	var textd=texta+destin+textb+destin+textc
	newwindow=window.open("","subWindow","scrollbars=1,toolbar=1,resizable=1,height=300,width=600");
	newwindow.focus();
	newwindow.document.write(textd);
	newwindow.document.close();

}

function gotoit(dest){
	window.location.hash=dest;
	window.scrollBy(0,-100)
}

function ChangeColor(thename,replacement){
		
		var blnk=thename+".src"
		blnk= eval("document.images."+blnk)
		var nameofpix=blnk.substring(blnk.lastIndexOf("/")+1,blnk.length)
		var pixcolor= "document.images." + thename + ".src= \"" + replacement + "\""
		eval(pixcolor);
		
}

function jumpto(adrs) {
	location.href=adrs
	} 

function closeme() {
parent.window.close();
 }

function Getpackage() {
   window.open('techinfo.asp',"","menubar=1,scrollbars=1,status=1,resizable=1,height=300,width=600")
}

function backward(){
history.back();
}