//Popup window

function popup(wid, hei, url)
{
	winProperties = 'width='+wid+',height='+hei+',scrollbars=yes,resizable';
	pwin = window.open(url, "", winProperties);
}

