function openChildWindow(path,pageTitle,scrollBarPresent) 
{ 
    var childWindow = window.open(path,pageTitle,'width=600,height=600,left=200,top=60,resizable=yes,scrollbars='+scrollBarPresent);
    childWindow.focus();
    
}


function openMerchandiseWindow(path) 
{ 
    var childWindow = window.open(path,'', 'width=800,height=500,location=yes, menubar=yes, titlebar =yes, resizable=yes,scrollbars=yes,status=yes,toolbar=yes');
    childWindow.focus();
    
}