function print_page()
{
	w		= 700;
	h 		= 580;
	t 	= (screen.height - h)/2;
	l 	= (screen.width - w)/2;
	print_win = window.open('print.html','print_page','width='+w+', height='+h+', top='+t+', left='+l+', menubar=no, scrollbars=yes, status=yes, resizable=no');
	print_win.focus();
}

function send_page()
{
	w		= 400;
	h 		= 300;
	t 	= (screen.height - h)/2;
	l 	= (screen.width - w)/2;
	window.open('sendP.php','friendwin','width='+w+',height='+h+',top='+t+',left='+l+',status=yes,scrollbars=no,location=no,menubar=no,resizable=no');
}