// ==================================
// Open New Window
// ==================================
function NewWin()
{
	if (Nav)
	{
		if(parseInt(navigator.appVersion) >= 4)
		{
			var OpenedWin = window.open('frameset.html','MainWin','width=' + screen.availWidth + ',height=' + screen.availHeight + ',screenX=0, screenY=0, toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=1');
			OpenedWin.focus();
		}
	}
	
	else
	{
		var OpenedWin = window.open('frameset_ie.html','MainWin','width=' + screen.availWidth + ',height=' + screen.availHeight + ',screenX=0, screenY=0, toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=1');
			OpenedWin.focus();
	}
}

