//script

//Send to a Friend Pop up//
function openWindow(page,details) {
    window_detail = window.open(page,'popupWindowName','resizable=no,width=720,height=420,left=50,top=50');
	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);}
}
