function openWin(strLoc, nDocID, intW, intH)
{
	var docWin, strAttribs;
			
	strAttribs = "menubar=no,scrollbars=yes,resizable=yes,status=yes,height=" + intH + ",width=" + intW;
	
	//alert(strAttribs);
		
	docWin = window.open(strLoc,intH + nDocID + intW,strAttribs);
}
