// Window Popper function
function Popper(url, box_name, width, height) {
	boxPop = window.open(url,box_name,'toolbar=no,location=no,scrolling=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height);
	boxPop.focus();
}

// Scrolling Window Popper function
function PopperScroll(url, box_name, width, height) {
        boxPop = window.open(url,box_name,'toolbar=no,location=no,scrolling=yes,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+width+',height='+height);
        boxPop.focus();
}


