// JavaScript Document
function popUp($href, $target, $width, $height)
{
	window.open($href, $target, 'width='+$width+',height='+$height+',scrollbars=auto');
}
