//script

//Send to a Friend Pop up//
function openWindow(page,details) {
    window_detail = window.open(page,'popupWindowName','resizable=no,width=380,height=330,left=0,top=0');
	window_detail.focus();
}



function surfto(form) {
var myindex=form.select1.selectedIndex
if (form.select1.options[myindex].value != "0") {
window.open(form.select1.options[myindex].value);}
}
