// JavaScript Document
function openPopup(url,width,height,scroll,name)
	{
		window.open(url,name,"menubar=no,status=no,location=no,width=" + width + ",height=" + height + ",toolbar=no,scrollbars=" + scroll);
	}
