function popUp(url, name, width, height)
{
	var opt = 'status,width=' + width + ',height=' + height;
	
	window.open(url, name, opt);
}
