<!--
function subWin(wUrl,wNAME,wWidth,wHeight,wOption){
	
    var h = screen.height;
	
	scWidthCenter = screen.availWidth / 2;

	scHeightCenter = screen.availHeight / 2;
	
	if(h < wHeight){
		wHeight = h*0.9;
        }

	features =
wOption+ ",width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));

window.open(wUrl,wNAME,features);
}
//-->