// /////////////////////////////////////////////////////////////////////////////////
// /                               هاك الاهداءات برمجة مهندسون بلا حدود 
// /                                   http://www.matarawy.net/m 
// /					   		  الاصدار الثاني  
// /							   version 1.2    
// /                                       1.x.x متوافق مع
// /////////////////////////////////////////////////////////////////////////////////


// to make marquee work in firefox and ie 

function AdjustMarqueeWidth()
{
	//alert(navigator.appName); 
	if(navigator.appName == 'Microsoft Internet Explorer') 
	{
		document.getElementById('vmarquee').style.width = '100%';
	}
}

// check if the any textarea is empty .

	function ValidateMessage()
	{
		if(document.getElementById('title').value == "" || document.getElementById('textArea_MessageBody').value == "")
		{
			alert("عفواً يوجد حقل فارغ .. يجب كتابة المكان والأهداء");
			return false;
		}
		else
			return true;
	}