function IncludeJavaScript(jsFile)
{
  document.write('<script type="text/javascript" src="'
    + jsFile + '"></scr' + 'ipt>'); 
}
jsfile = 'http://i1.makcdn.com/bentelhalal/bentelhalal/Images/popup/loginDiv.js';
IncludeJavaScript(jsfile);
function PrintLoginDiv() {
		lang = document.getElementById('intLangForWm').value;
		if (window.XMLHttpRequest) { // Mozilla, Safari,...
			heightWidth = 'width="580px" height="371px"';
		}else if (window.ActiveXObject) { // IE
			hieght = '342px';
			if( lang == 'en') {
				hieght = '300px';
			}
			heightWidth = 'width="570px" height="'+hieght+'"';
		}else{
			hieght = '342px';
			if( lang == 'en') {
				hieght = '200px';
			}
			heightWidth = 'width="570px" height="'+hieght+'"';			
		}
		//style="width:580px;_width:570px;height:371px;_height:'+hieght+'
		loginHTML ='<div  align="center">';
		loginHTML +='<iframe id="login" scrolling="no" frameborder="0" '+heightWidth+' align="middle" marginheight="0" marginwidth="0" src="http://bentelhalal.maktoob.com/regDivOLogin.php?Lang='+lang+'"></iframe>';
		loginHTML +='</div>';
		return loginHTML;
	}
