var newWindow;
function popwin(url,nam,wid,heig) {
	newWindow = window.open(url,nam,'status = 1, height = '+heig+', width = '+wid+', resizable=yes, scrollbars=yes, top = 50, left = 50');
	if (window.focus) {newWindow.focus()}
}
