function printpage()
{
window.print()
}

function openWin(myurl)
{
window.open(myurl, 'new_window', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=500, height=100');
return;
}

function openMap()
{
window.open('http://www.nzam.com/nzcover/index.htm', 'map_window', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=648,height=406');
return;
}
function openImage(myurl, width, height)
{
window.open(myurl, 'image_window', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + width + ', height=' + height);
return;
}

function setImage(width, height)
{
self.resizeTo(width, height);
return;
}
