// JavaScript Document
function popWin(url, w, h) 
		{
			
				
				w=w+90
				var popURL = url;
				var x, y, winStr;
				x=70; y=120;
				self.name="opener";
				winStr = "height="+h+",width="+w+",screenX="+x+",left="+x+",screenY="+y+",top="+y+","
				winStr=winStr+"channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,"
				winStr=winStr+"menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1";
				lilChild = window.open(popURL, "_blank", winStr);
			
		}	
