function popUp(URL,W,H) {
var winHandle=null;
var index = URL.indexOf("html");
if(index<1)
{
winHandle = window.open("","",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+W+',height='+H+',left=300,top=200');
winHandle.document.write("<html><title>ICONICS UK Ltd Image</title><body><img src="+URL+"></body></html>");
}
else
{
winHandle = window.open(URL,"",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+W+',height='+H+',left=300,top=200');
}
}

function inputBox(value){
if(value=="<Enter e-mail address>"){
document.forms[0].EMAIL.value="";
}
}