function popUp(
	site_link, 
	window_width, 
	window_height, 
	pos_left, 
	pos_top, 
	win_name, 
	isscroll) 
{ 
  if ( !window_width ) window_width = 400;
  if ( !window_height ) window_height = 300;
	if ( !pos_left && !(pos_left == 0) ) pos_left = 50;	
  if ( !pos_top && !(pos_top == 0) ) pos_top = 50;
	if ( !win_name ) win_name = '';	
	if ( !isscroll ) isscroll = '1';

  var wnd_n=window.open(site_link, win_name, 'toolbar=0, scrollbars=' + isscroll + ', location=0, status=1, menubar=0,resizable=1,width='+ window_width + ',height=' + window_height + ',left=' + pos_left + ', top=' + pos_top);  
	if ( win_name != '')
	{
		wnd_n.focus();
	}	
}


function popUp1(
	site_link, 
	window_width, 
	window_height, 
	pos_left, 
	pos_top, 
	win_name, 
	isscroll) 
{ 
  if ( !window_width ) window_width = 400;
  if ( !window_height ) window_height = 300;
	if ( !pos_left && !(pos_left == 0) ) pos_left = 50;	
  if ( !pos_top && !(pos_top == 0) ) pos_top = 50;
	if ( !win_name ) win_name = '';	
	if ( !isscroll ) isscroll = '1';

	/*
	l_iObj = top.document.getElementById( "l_i" );
	ns ="http://counter.yadro.ru/hit?t43.6;r"+
		escape('http://www.zemax.ru')+((typeof(screen)=="undefined")?"":
		";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth?
			screen.colorDepth:screen.pixelDepth))+";u"+escape('http://www.zemax.ru/redir.php?s='+site_link)+
			";"+Math.random();
	//alert( l_iObj.src );
	//alert( ns );
	l_iObj.src = ns;
	*/

  var wnd_n=window.open(site_link, win_name, 'toolbar=1, scrollbars=' + isscroll + ', location=1, status=1, menubar=1,resizable=1,width='+ window_width + ',height=' + window_height + ',left=' + pos_left + ', top=' + pos_top);  
	if ( win_name != '')
	{
		wnd_n.focus();
	}	
}

