// JavaScript Document

function i_win(htM,wiD,heI) {
	var myOption = "width="+ wiD + ", height=" + heI + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes";
	window.open(htM, 'mywindow2', myOption);
}

function e_win(htM,wiD,heI) {
	var myOption = "width="+ wiD + ", height=" + heI + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	window.open(htM, 'mywindow2', myOption);
}

var ua = navigator.userAgent;
if (ua.indexOf("NT 6.0",0) == -1) {}
else {
	document.write('<link rel="stylesheet" href="/common/css/vista.css" type="text/css" />');
 }