function openPopup( url, x,y) 
{

    min_x = 200;
    min_y = 100;

    x = (x> min_x) ? x+2 : min_x;
    y = (y> min_y) ? y+36 : min_y;

	ytop = screen.height/2 - y/2;
	xleft = screen.width/2 - x/2;	

    window.open( url, "", "scrolling=auto,width="+x+",height="+y+", top="+ytop+", left="+xleft);
    return false;
}


function openResume()
{
	x = (screen.width - 800) / 2; 
	
	window.open('','resume',
	'top=40, left='+x+', width=790, height=500, toolbar=yes, resizeable=yes, scrollbars=yes, menubar=yes, location=yes, directories=yes');
}