function openPlacementForm()
	{
	//set size of new window
	w = 740;
	h = 925;
	
	//make sure the size isn't too big for set resolution
	if (h > screen.availHeight)
		{h = screen.availHeight;}
	if (w > screen.availWidth)
		{w = screen.availWidth;}
	
	//set coords to place window in center screen
	t = screen.availHeight / 2 - h / 2;
	l = screen.availWidth / 2 - w / 2;
	
	myWin = window.open('','myWin','top='+t+',left='+l+',menubar=no,status=no,location=no,toolbar=no,scrollbars=yes,resizable=yes,width='+w+',height='+h);
	myWin.resizeTo(w,h);
	myWin.moveTo(l,t);
	myWin.focus();
	
	curloc = myWin.location.href.toUpperCase();
	if (curloc.indexOf('/PLACEMENT') == -1)
		{myWin.location = '/Contact/Placement';}
	}
