
function myopen(link){
photos=window.open(link,'KPGraphics',"width=600,height=500,top=100,left=100,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");}

function printopen(link){
p_print=window.open(link,'KPGraphics',"width=790,height=550,top=100,left=50,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");}

function printopen2(link){
p_print=window.open(link,'KPGraphics',"width=1,height=1,top=0,left=0,resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no");}


<!--
// Image objects for FlipImage()

//nav Objects
//level 1
nav00a = new Image(108,16);
nav00b = new Image(108,16);
nav01a = new Image(108,16);
nav01b = new Image(108,16);
nav02a = new Image(108,16);
nav02b = new Image(108,16);
nav03a = new Image(108,16);
nav03b = new Image(108,16);

//nav  Source
//level 1
nav00a.src = "images/b-home.gif"
nav00b.src = "images/b-home-off.gif"
nav01a.src = "images/b-about.gif"
nav01b.src = "images/b-about-off.gif"
nav02a.src = "images/b-services.gif"
nav02b.src = "images/b-services-off.gif"
nav03a.src = "images/b-contact.gif"
nav03b.src = "images/b-contact-off.gif"

//images of bullets should be named "b<xx>" where xx is the index of the bullet
//images of tags should be named    "n<xx>" where xx is the index of the nav button

function doswitch(option,to) {

    //flip nav
    FlipImage("n"+option,eval("nav"+option+to));
}

function FlipImage(IMGName,ImageObject) {

    if (document.images)
        document.images[IMGName].src = eval("ImageObject"+".src");
}
//-->

function doUpload(ID)
	{
		if (!false)
			x=window.open ('theUpload.asp?proID=' + ID ,'UploadWindow','width=400,height=120,top=15,left=15,location=no,copyhistory=yes,scrolling=no,resizable=no');
		
		return false;
	}

function oUpload(ID)
	{
		if (!false)
			x=window.open ('oUpload.asp?proID=' + ID ,'UploadWindow','width=400,height=120,top=15,left=15,location=no,copyhistory=yes,scrolling=no,resizable=no');
		
		return false;
	}


<!--

//Auto refresh pages. to handle session time out

//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="22:00"

if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{ 
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
//window.status=curtime
setTimeout("beginrefresh()",1000)
}
}

window.onload=beginrefresh
//-->

