// JavaScript Document
function InfoPopup( source, target, w, h )
{
		 var leftPos = (screen.availWidth-w) / 4
		 var topPos = (screen.availHeight-h) / 4
	
		 window.open(source,target,'width=w,height=h,scrollbars=yes,resizable=yes,titlebar=0,top=' + topPos + ',left=' + leftPos);
		//    window.open( source, target, 'width=' + w + ',height=' + h + ',alwaysRaised=yes,dependent=yes,resizable=yes' );
                        //'width=240,height=30,alwaysRaised=yes,dependent=yes,resizable=yes');
                        //,directories=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no,titlebar=no,toolbar=no');
}

