function popUp(URL) 
{
var child =  window.open(URL, 'Request_To_Show_Home', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=420,left = 362,top = 120');
}

function popUp1(URL,TITLE)
{
var child =  window.open(URL,TITLE, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=480,height=420,left = 362,top = 120');
}

