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