function popship() {
// Set the horizontal and vertical position for the popup
PositionX = 100;
PositionY = 100;
// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)
defaultWidth  = 450;
defaultHeight = 285;
// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows
var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;

if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');
writeln('<script>');
writeln('var isNN,isIE;');
writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');
writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function doTitle(){document.title="Free Shipping Details";}');
writeln('</script>');
if (!AutoClose) writeln('</head><body bgcolor=FFFFFF scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=FFFFFF scroll="no" onload="doTitle();self.focus()"  onselectstart="return false" ondragstart="return false" oncontextmenu="return false">');
writeln('<table align=center width=425>');
writeln('<tr><td rowspan=3 valign=top><img src="http://www.racepages.com/images/free_shipping.jpg"></td><td style="font-size:20px; font-weight:bold; color:blue;">Free Shipping On All Orders Over $50</td></tr>');
writeln('<tr><td><b>Free UPS Shipping</b> - When you choose to ship ground with us it is free of charge on orders that total over $50.00 and applies only to the continuous 48 states.</td></tr>');
writeln('<tr><td>Shipping time is usually between 4 to 7 business days.</td></tr>');
writeln('<tr><td>&nbsp;</td></tr>');
writeln('<tr><td colspan=2 style="text-align:center"><a style="color:black;" href="#" onclick="self.close()">Close Window</a></td></tr></table>');
close();		
}
}
function popphone() {
// Set the horizontal and vertical position for the popup
PositionX = 100;
PositionY = 100;
// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)
defaultWidth  = 450;
defaultHeight = 200;
// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows
var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;

if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');
writeln('<script>');
writeln('var isNN,isIE;');
writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');
writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function doTitle(){document.title="Call Toll Free";}');
writeln('</script>');
if (!AutoClose) writeln('</head><body bgcolor=FFFFFF scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=FFFFFF scroll="no" onload="doTitle();self.focus()"  onselectstart="return false" ondragstart="return false" oncontextmenu="return false">');
writeln('<table align=center width=425>');
writeln('<tr><td rowspan=2 valign=top><img src="http://www.racepages.com/images/tollfree.jpg"></td><td style="font-size:20px; font-weight:bold; color:blue;">Operators are Standing By!</td></tr>');
writeln('<tr><td>Call 1-800-814-8638 Toll-Free 24 Hours a Day, 7 Days a Week.  Place your orders morning, noon or night!  We\'ll always have someone waiting to take your call and assist you any way they can.</td></tr>');
writeln('<tr><td colspan=2 style="text-align:center"><br><a style="color:black;" href="#" onclick="self.close()">Close Window</a></td></tr></table>');
close();		
}
}
