<!--

function set_size(win,w,h) {
	win.resizeTo(w,h);
	win.moveTo((window.screen.width/2)-(w/2),(window.screen.height/2)-(h/2));
}


function open_win(strUrl, width, height){
	var new_win = open(strUrl,'new_win','resizable,toolbar=no,Location=no,Menubar=no,scrollbars=yes,width='+width+',height='+height);

	if(navigator.appName == 'Netscape')
		set_size(new_win, width, height);
	else
		set_size(new_win, width, height);
}

//end hiding Javascript code -->
