<!-- Begin

function surfto1(form) {
        var myindex=form.select1.selectedIndex
        location.href=form.select1.options[myindex].value;
}



var newWindow,newWindow1;


function makeNewWindow(content,img) {
foto1=new Image();
foto1.src=(img);
if((foto1.width!=0)&&(foto1.height!=0)){
CreateWindow(content,img);
}
else {
funzione="makeNewWindow('"+content+"','"+img+"')";

}

}


function CreateWindow(content,img){
largeh=foto1.width+200;
altez=foto1.height+175;
newWindow = window.open("","","status=no,screenx=5,screeny=55,resizable=yes,titlebar=yes,alwaysraised=yes,height=" + altez + ",width=" + largeh + ",scrollbars=yes")
if(!newWindow.opener) {
newWindow.opener = window
}

writeToWindow(content)

newWindow.focus()
}

function writeToWindow(wincontent) {
content = "<body onblur='window.close();' bgcolor=white leftmargin=0 topmargin=50 offset=0 marginheight=10 marginwidth=0><div align=center valign=bottom>"
content = content + wincontent
content = content + "<br><br><br><B><FONT SIZE=2 color=black style=arial>"
content = content 
content = content + "<BR><br><a href=javascript:close()><FONT SIZE=2 color=black  style=Arial><b> Close Window </b></font></a></div><br></body></html>"
newWindow.document.write(content)

} 

function showSpecification(name) {

newWindow1 = window.open("","","status=no,screenx=5,screeny=55,resizable=yes,titlebar=yes,alwaysraised=yes,height=" + 300 + ",width=" + 300 + ",scrollbars=yes")



content = "<body onblur='window.close();' bgcolor=white leftmargin=0 topmargin=5 offset=0 marginheight=10 marginwidth=0>"


content = content + "<br><br><br>"
content = content + name
content = content + "<BR><br><br><div align=center valign=bottom><a href=javascript:close()><FONT SIZE=2 color=black style=arial>Close Window </font></a></div></body></html>"
newWindow1.document.write(content)
newWindow1.focus();



} 

// End -->
