function popup(url,winName,width,height,xPos,yPos) {
		newWindow = window.open(url,winName,"toolbar=no,location=no,width="+width+",height="+height+",scrollbars=no,menubar=no,resizable=no,status=no");
		if (document.getElementById) {
			if (xPos && yPos) {
				newWindow.moveTo (xPos,yPos);
			}
		}
		
}