function sure(url)
{
if(confirm('Are you sure?'))
{
window.location = url;
}
}
//
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"); 
}

function toggle_save(status)
{
if(status == true)
{
document.getElementById('savef').style.display = 'block';
}
else
{
document.getElementById('savef').style.display = 'none';
}
}

