<!--
//Autor: a1yadu@yahoo.com. Arikav Fab Pvt Ltd. 
//Opening new customized window. It's being used for opening location window

function winopen()
{
var windnew = window.open('./location.html','new', 'toolbar=no, location=no, status = no, menubar = no, resizable=yes, scrollbars=yes, width=800, height=600, left=100, top=50') ;
windnew.focus( );
}

//-->