
<!-- ;
var newwindow;
var wheight = 0, wwidth = 0;
function popitup5(url, title, iwidth, iheight, colour) {
var pwidth, pheight;



if ( !newwindow || newwindow.closed ) {
pwidth=iwidth+0;
pheight=iheight+65;
newwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=1,top=8,left=30');
wheight=iheight;
wwidth=iwidth;
}

if (newwindow && !newwindow.closed) { 
newwindow.close();
pwidth=iwidth+0;
pheight=iheight+65;
newwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=1,top=8,left=30');
wheight=iheight;
wwidth=iwidth;
}



newwindow.document.clear();
newwindow.focus();
newwindow.document.writeln("<html><head><title>Casagrande UK</title></head>")
newwindow.document.writeln("<body bgcolor='#336666' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' link='#FFFFFF' vlink='#FFFFFF' alink='#FFFFFF'>")
newwindow.document.writeln("<table width="+ iwidth +" border='0' cellspacing='0' cellpadding='0' height='37' background='images/popup-bg.gif'>")
newwindow.document.writeln("<tr> <td><img src='images/popup-header.gif' width='180' height='37'></td>")
newwindow.document.writeln("</tr></table><table width="+ iwidth +" border='0' cellspacing='0' cellpadding='0'><tr>")
newwindow.document.writeln("<td bgcolor='#336666'><img src="+ url +"  width="+ iwidth +"  height="+ iheight +">")
newwindow.document.writeln("</td></tr></table><table width="+ iwidth +" border='0' cellspacing='0' cellpadding='2' height='8'>")
newwindow.document.writeln("<tr> <td bgcolor='#336666'>")
newwindow.document.writeln("<div align='center'><a href='javascript:window.close();'><font face='Verdana, Arial, Helvetica, sans-serif' size='1'><b>Close Window</b></font></a></div></td></tr></table></body></html>")
newwindow.document.close();
newwindow.focus();
}

// Routines to tidy up popup windows when page is left
// Call with an   in body tag

function tidy5() {
if (newwindow && !newwindow.closed) { newwindow.close(); }
}
