function popWin( url, name ) {
	var real_url = url.match(/^http:\/\//) ? url : 'http://' + url;
	var newwindow=window.open(  real_url , '' + name + '' ,'width=860, height=660, 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;
}

