function openSubWin_pict(strURL) {
	strLocation = strURL;
	strWHandle = "sdcSubWin";
	strProps = "resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,width=" + 400 + ",height=" + 300 + ",top=150,left=200";
	w=window.open(strLocation, strWHandle, strProps);
	w.focus();
}		

function openSubWin(strURL, pixW, pixH) {
	strLocation = strURL;
	strWHandle = "sdcSubWin";
	strProps = "resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,width=" + pixW + ",height=" + pixH + ",top=150,left=200";
	w=window.open(strLocation, strWHandle, strProps);
	w.focus();
}
