// JavaScript Document
function popWindow(url, title, width, height) { 
	popWin = window.open(url, title, "width=700,height=600,status=yes,scrollbars=yes,resizable=yes");
	popWin.focus();
}