function newWindowAppl() {	applWindow=window.open("application.pdf", "Application", "menubar=yes,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,width=600,height=450")}function newWindow() {	applWindow=window.open("ApartmentApplication.doc", "Applicationdoc", "menubar=yes,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,width=600,height=450")}function custWindow(doc,w,h,align,valign,scroll) {	if (custWindow.arguments.length < 6) {		var scroll = 'no'		}	if (custWindow.arguments.length < 4) {		var align = 'c'		var valign = 'm'		}	topPos=0	leftPos=0	if (screen) {		if (align == 'c') {			leftPos = screen.width/2 - w/2			} else {			if (align == 'r') {				leftPos = screen.width - w - 12				}			}		if (valign == 'm') {			topPos = screen.height/2 - h/2			} else {			if (valign == 'b') {				topPos = screen.height - h - 5					}				}			}		custWin = window.open (doc,'custWin','toolbar=no,location=no,scrollbars='+scroll+',resizable=yes,width='+w+',height='+h+',left='+leftPos+',top='+topPos+'')		custWin.document.close()		custWin.focus()		}