function openShopList(theURL,wWidth,wHeight) { // Open window at center of Screen
scWidthCenter = screen.availWidth/2;
scHeightCenter = screen.availHeight/2;
wOption="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+wWidth+ ",height="+wHeight+",left="+(scWidthCenter-(wWidth / 2))+",top="+(scHeightCenter-(wHeight / 2));
NewWin = window.open(theURL,'window1',wOption);
NewWin.focus();
}
