function OpenPopup(URL, Width, Height){
	window.open(URL, 'Popup', 'width=' + Width + ', height=' + Height + ', left=' + ((screen.availWidth-Width)/2) + ',top=' + ((screen.availHeight-Height)/2) + ',menu=no,status=no');
}

