// JavaScript Document

   <!-- Hide script from old browsers

//POP UP WINDOW FUNCTION 

function openwindow(varSite,varWidth,varHeight,varOther)
{
var varOptions = "height="+varHeight
varOptions = varOptions+",width="+varWidth+","
varOptions = varOptions+varOther
window.open(varSite,"newwin",varOptions)
}

//use the following code to use the function
//openwindow('http://www.co.seminole.fl.us','600','600','location=yes,status=yes,toolbar=yes,top=2,left=2,scrollbars=yes')

// IMAGE DISPLAY WINDOW START
// ADDED 1/9/2004 - CP
function openimage(imageSrc,imageTitle)
{ 
    fileName = '/semheart/imageview.asp?' + escape(imageSrc) + '&' + escape(imageTitle);
    myWindowHandle = window.open(fileName,'windowName','directories=no,location=no,menubar=yes,scrollbars=yes,status=no,toolbar=no,resizable=yes,left=2,top=2,width=700,height=500');
}
// IMAGE DISPLAY WINDOW END

var rannum1 = (Math.floor(Math.random() * 100) + 1)
window.name="pubsafe"+rannum1;
   // End hiding script from old browsers -->