// Copyright 2000-2008, DataCom of Duluth
        
// Setup

//Set Cookie for Current Page
function scPage(cName) {
	document.cookie = "cPage" + "=" + cName+";path=/;";
	document.getElementById(cName).style.color = "#990000";
}


// Roll Over Buttons
function turnOn(imgName) {
	if(document.cookie.split("=")[1]!=document[imgName].name) {
		document[imgName].src=eval(imgName + "_on.src");
	}
}

function turnOff(imgName) {
	if(document.cookie.split("=")[1]!=document[imgName].name) {
		document[imgName].src=eval(imgName + "_off.src");
	}
}

//Open Files
function openFile(theFile) {
    window.open (theFile);
}

function openFileA(theFile, theWindow, theBar, theSize, theWidth, theHeight) {
    window.open (theFile, theWindow,"status=no,location=no,toolbars="+theBar+",menubar="+theBar+",directories=no,scrollbars=no,resizable="+theSize+",width="+theWidth+",height="+theHeight);
}

// Open The Picture File
function openPic(iFile) {
	novPic=new Image();
	novPic.src=iFile;
	checkSize(iFile);
}

// Checks The Size - Because It Matters
function checkSize(iFile) {
	if((novPic.width!=0)&&(novPic.height!=0)) {
		displayPic(iFile);
	} else {
		reTest="checkSize('"+iFile+"')";
		doAgain=setTimeout(reTest,50);
	}
}

// Write The Image File
function displayPic(iFile) {
	iFw=novPic.width+20;
	iFh=novPic.height+60;
	nwSetup="width="+iFw+"px,height="+iFh+"px";
	newWindow=window.open(iFile, "picWin", "toolbar=no,location=no,scrollbars=no,resizable=no,"+nwSetup);
   	if (newWindow && !newWindow.closed) {
	newWindow.resizeTo(iFw+20,iFh+60);
	}
	newWindow.document.open();
	newWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">");
	newWindow.document.write("<html>");
	newWindow.document.write("<head>");
	newWindow.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
	newWindow.document.write("<!-- Copyright 2000-2008, DataCom/OTA, Inc. -->");
	newWindow.document.write("<title>Impact Sports Training</title>");
	newWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"/nov-gallery.css\">");
	newWindow.document.write("</head>");
	newWindow.document.write("<body>");
	newWindow.document.write("<center>");
	newWindow.document.write("<img src=\""+iFile+"\"><br><br>");
	newWindow.document.write("<p style=\"text-align:center; font-size:8pt; font-family:Arial, Helvetica, sans-serif;\"><a href=\"javascript:window.close()\" style=\"text-decoration:none;\">[ close window ]</a>");
	newWindow.document.write("</center>");
	newWindow.document.write("</body>");
	newWindow.document.write("</html>");
	newWindow.document.close();
	newWindow.focus();
}