function makePopUp(width, height, url)
{	
	winWidth = width + 30;
	winHeight = height + 80;
	
	mywindow = window.open (url, "PopUpWindow","menubar=0,location=0,toolbar=0,status=0,scrollbars=1,resizable=1,width=" + winWidth + ",height=" + winHeight);

	mywindow.focus();
	mywindow.resizeTo(winWidth, winHeight);
	
}