//eupdate

function eupdate(the_url)
{
    var eupdateHeight = 250;
    var eupdateWidth = 422;
    var new_window = window.open(the_url, new_window, "height="+eupdateHeight+",width="+eupdateWidth+",scrollbars=no,resizable=no");
	new_window.moveTo((screen.width/2)-(eupdateWidth/2),(screen.height/2)-(eupdateHeight/2));
	new_window.focus();
}
