function hidebutton(btn,frm)
{
document.getElementById(btn).disabled = true;
document.getElementById(btn).value = '..Please wait...';
document.getElementById(frm).submit();
}
function sure(url)
{
if(confirm('Are you sure?'))
{
window.location = url;
}
}
function Zoom(sPicURL)
{ 
window.open("popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=400,WIDTH=400"); 
}
