function opennotoolbars(p_link,p_sURL,p_iWidth,p_iHeight, p_sScrollbars)
					{
						var sFeatures;
						sFeatures="resizable=yes,toolbars=no,width=" + p_iWidth + ",height=" + p_iHeight;
						if(p_sScrollbars !=null)
							{
								sFeatures=sFeatures + ',scrollbars=' + p_sScrollbars;
							}
						
						window.open(p_sURL,"",sFeatures);
						return false;
					}

	function ShowText(strText){
		if (document.all !=null)
		 document.all.item("lblMessage").innerText=strText;
	}

					function opentour(p_sURL,p_link){
						var sFeatures;
						sFeatures="toolbars=no,width=991,height=635"
						window.open(p_sURL,"",sFeatures);
						return false;
					}