﻿// JScript File

function clickNewWin(a,name,w,h){
	try{
		window.frames(name).focus();//exhibitorInfo.focus();
		return true;
	}catch(e){
		//alert(event.srcElement.href);
		var wT = '', hT = '';
		if(w)
			wT = ',width=' + w;
		if(h)
			hT = ',height=' + h;
		var str = new String('status=yes'+wT+hT+',toolbar=no,menubar=no,location=no,scrollbars=yes');

		var newWin = window.open(a.href, name ,str);
		newWin.focus();
		return false;
	}
}
