/* 

TITLE		Launch Centred Popup Window
MODIFIED	22/10/2002
AUTHOR		Christian Wach

USAGE

<script type="text/javascript" src="js/popup.js" language="javascript"></script>

<a href="javascript:popup('test.html','test','300','200');">link</a>

*/



var newwin;
	
function popup( win_url, win_name, win_width, win_height ) {
	
	// Configure Window
	
	screen_width = screen.width;
	screen_height = screen.height;
	
	left_margin = (screen_width - win_width)/2;
	top_margin = (screen_height - win_height)/2;
	
	window_props = "scrollbars=no,menubars=no,toolbars=no,resizable=no,left=" + left_margin + ",top=" + top_margin + ",width=" + win_width + ",height=" + win_height;

	newwin = window.open(win_url, win_name, window_props);
	
	setTimeout('newwin.focus();', 250);
	
	return false;
	
}


