function sure(url)
{
if(confirm('Are you sure?'))
{
window.location = url;
}
}
//
function otherfid(v)
{
if(v == 'Outside Australia')
{
document.getElementById('otherbit').style.display = 'block';
}
else
{
document.getElementById('otherbit').style.display = 'none';
}
}
//
function wait(btn,frm)
{
document.getElementById(btn).value = 'please wait...';	
document.getElementById(btn).disabled = true;
document.getElementById(frm).submit();
}
function Zoom(sPicURL)
{ 
window.open("popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=400,WIDTH=600"); 
} 
