<!-- Begin POPUP CODE


// COPYRIGHT 2008 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE





function PopContact(website) {

 if(navigator.appName == "Netscape")
{
msg=open("contact.htm","frameWindow","scrollbars=no,toolbar=no,resizable=no,directories=no,menubar=no,location=no,status=no,width=450,height=410");
}



else {

var heightspeed = 15; // vertical scrolling speed (higher = slower)
var widthspeed = 15;  // horizontal scrolling speed (higher = slower)
var leftdist = 100;    // distance to left edge of window
var topdist = 100;     // distance to top edge of window
var fullwidth = 450;     // distance to top edge of window
var fullheight = 410;     // distance to top edge of window
if (document.all) {
var winwidth = fullwidth;
var winheight = fullheight;
var sizer = window.open("","","left=" + leftdist + ",top=" + topdist + ",width=1,height=1,scrollbars=no");
for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed) {
sizer.resizeTo("1", sizeheight);
}
for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed) {
sizer.resizeTo(sizewidth, sizeheight);
}
sizer.location = website;
}
else
window.location = website;
}

}






// End -->
