// JavaScript Document
var navig;
navig=navigator.appName;
if(navig=='Microsoft Internet Explorer')
{ var IS_IE=true; } else 
{
	if (navig=='Opera') { var IS_OP=true;} else 
	{
		if (navig=='Netscape') { var IS_MZ=true;}
	}
}

function OpenWindow(urls)
{
	var sURL, sDesrc;
	var sParams = new Array(6);
	sURL = urls;
	sParams[0] = "800"; 
	sParams[1] = "600"; 
	sParams[2] = "no"; 
	sParams[3] = "no"; 
	sParams[4] = "no"; 
	sParams[5] = "no"; 
	sDesrc = "width=" + sParams[0] + ", height=" + sParams[1] +
		", status=" + sParams[2] + ", toolbar=" + sParams[3] +
		", menubar=" + sParams[4] + ", scrollbars=" + sParams[5];
	window.open(sURL, "displayWindow", sDesrc);
}

function FIX_IE()
{
	document.writeln('<style type=text/css>.style1 {font-size: 10px;} #loginfields{left:520px;} #topmenu{left: 218px; width:775px;} #topmenu_img {width:787px;} #main_content {width:785px;} #info {left: 866px;} #foot_td { background-image:url(images/table_bg3.gif);} </style>');
}
function FIX_OP()
{
	document.writeln('<style type=text/css>.style1 {font-size: 10px;} #loginfields{left:520px;} #topmenu{left: 218px; width:775px;} #topmenu_img {width:789px; margin-left:-5px;} #main_content {margin-left:5px; width:787px;} #topmenu_links {left:-5px;} #footer_line {left: 214px; width:768px; padding-top:15px;} #poisk {left: 860px;}</style>');
}
function FIX_MZ()
{
	document.writeln('<style type=text/css>.style1 {font-size: 10px;} #loginfields{left:520px;} #topmenu{left: 218px; width:775px;} #topmenu_img {width:789px; margin-left:-5px;} #main_content {margin-left:5px; width:787px;} #topmenu_links {left:-5px;} #footer_line {left: 215px; width:767px; padding-top:15px;} #poisk {left: 860px;}</style>');
}

