// display video in a popup window

function popupvideo(vurl) {

var newwin=window.open('','videowindow','height=400,width=400');

newwin.document.write('<html><head><title>US Bells: Watch Bell Video</title>');
newwin.document.write('<link rel="stylesheet" href="http://www.usbells.com/usbells-popup.css">');
newwin.document.write('</head><body align="center"><div id="videopopup"><a href="http://www.usbells.com/index.html" target="_"><img src="http://www.usbells.com/logo_sm.gif" alt="U.S. Bells" name="top" /></a><p><br></p>');

newwin.document.write('<embed src="' +vurl+ '" autostart=true loop=false BGCOLOR="#FAF7EC" height="200" width="300">');

newwin.document.write('<p><a href="http://www.apple.com/quicktime/">Download free Quicktime movie viewer</a></p>');
newwin.document.write('<p><br></p><p><a href="javascript:window.close();"><b>[CLOSE]</b></a></p>');
newwin.document.write('</div></body></html>');
newwin.document.close();

}
// -->

