function Popup(url,title,scrollbars,width,height)
{
	window.open(url,title,"toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=" + scrollbars + ",width=" + width + ",height=" + height + ",top=20,left=20");
}


function Popup2(url, nompopup, width, height, scroll)
{
	window.open(url,nompopup,"toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=" + scroll + ",width=" + width + ",height=" + height + ",top=200,left=150");
}
