// JavaScript Document
<!--
// * * Pop-window
// * * Version 2, IE 4/NS 4 compatible
// like this: showPage('flash/main1.html','ok',-1,-1,500,512,'http://www.vodafone.com')
function showPage( page_name, win_name, pos_x, pos_y, win_width, win_height ) {
	if( page_name == "" )
		   return;

	if( pos_x == -1 )
		pos_x = parseInt( screen.width / 2.0) - (win_width / 2.0);

	if( pos_y == -1 )
		pos_y = parseInt( screen.height / 2.0) - (win_height / 2.0);

	var win = window.open( page_name, win_name, "width=" + win_width + ",height=" + win_height + ",resizable=no,scrollbars=no,left=" + pos_x + ",top=" + pos_y );
	win.moveTo( pos_x, pos_y );
	win.focus( );

}
//-->
