function launchWin(doc,name,w,h,s) {
	settings = "toolbar=0,scrollbars=" + s + ",location=0,status=0,menubar=0,resizeable=0,width=" + w + ",height=" + h;
	popupWin = window.open(doc,name,settings);
	popupWin.moveTo(((screen.width/2)-(w/2)),((screen.height/2)-(h/2)))
}
