// JavaScript Document
function popUpAndScroll(url, title, width, height){	
	var args = "width=" + width + "," + "height=" + height + "," + "location=0,menubar=0,resizable=0,scrollbars=1,status=0,titlebar=0,toolbar=0";
	var myPop = window.open(url, title, args);
	myPop.focus();
}

