function openWinIcon(wUrl){	wName = "icon";	wWidth = 740;	wHeight = 370;	scWidthCenter = screen.availWidth / 2;	scHeightCenter = screen.availHeight / 2;	wOption ="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));	window.open(wUrl,wName,wOption);}function openWinMap(wUrl){	wName = "map";	wWidth = 640;	wHeight = 550;	scWidthCenter = screen.availWidth / 2;	scHeightCenter = screen.availHeight / 2;	wOption ="toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));	window.open(wUrl,wName,wOption);}function openWin(wUrl){	wName = "proud";	wWidth = 640;	wHeight = 550;	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));	window.open(wUrl,wName,wOption);}
