var newwindow;
function popupme(url)
{
	newwindow=window.open(url,'name','height=600,width=640,resizable=no,scrollbars=yes,left=100,top=100');
	if (window.focus) {newwindow.focus()}
}

