// $Id: mail-contents-nw.js 505 2005-10-19 15:38:51Z rakesh $
// $HeadURL: http://qmail2:8081/svn/im-sw/biztradeshows/trunk/main/includes/mail-contents-nw.js $

function openchild(thisurl,hgt)
{
	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	condition = !(( (browserName.indexOf("Explorer") >=0 ) && (browserVer < 4) ) ||  ((browserName.indexOf("Netscape") >=0 ) && (browserVer < 2) ) ) ;
	if (condition == true)
	CanAnimate = true;
	else
	CanAnimate = false;

	if ( CanAnimate )
	{
		if(typeof hgt == 'undefined')
		{
		msgWindow=window.open( '' ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=635,height=500');
		}
		else
		{
		msgWindow=window.open( "" ,"subwindow","toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=635,height="+hgt);
		}
		msgWindow.focus();
		msgWindow.location.href = thisurl;
	}
	else
	{
		if(typeof hgt == 'undefined')
		{
		msgWindow=window.open( thisurl ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=635,height=500');
		}
		else
		{
		msgWindow=window.open( thisurl ,"subwindow","toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=635,height="+hgt);
		}
	}
}

