// JavaScript Document

function newwin( section ){
	w = 100;
	h = 100;
	
	if( section == 'photos'){
		w = 800;
		h = 600;
		turl = 'http://projecttalentuk.com/PTUK2007/';
	}
	if( section == 'mailinglist'){
		w = 400;
		h = 330;
		turl = 'http://projecttalentuk.com/mailing-list.php';	
	}	
	openWindow( turl, w, h );
}

popWin = false;

function openWindow(turl,w,h){

	if (popWin){
		popWin.close();
	}
	x = (screen.width - w) /2;
	y = (screen.height - h) /2;
	popWin = window.open(turl,"imagepreview","top="+y+",left="+x+",width="+w+",height="+h);
	popWin.focus();
}