function popWin( url, name ) {
	var newwindow=window.open(  'http://' + url , '' + name + '' ,'width=800, height=600, top=0, left=0, resizable=yes, toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=no, copyhistory=no');
	if (window.focus) {newwindow.focus();}
	//return false;
}
