
function openPopup(url,width,height)
{
	newwindow=window.open(url,'_blank','location=0,toolbar=0,scrollbars=1,menubar=0,resizable=1,height='+height+',width='+width);
	newwindow.focus();
}
