// צובע שורה עם מעבר עכבר - START
    function setBGColor(oObject, sColor) {
       var color = "";
       if (sColor == 0) color = "#FFCC4E";
       document.getElementById(oObject).style.backgroundColor = color;
    }
// צובע שורה עם מעבר עכבר - END

// Div Title PopUP - START
    function PopUp_Title(Div_id, TStatus) {
	   var Status = "hidden";	
       if (TStatus == 1) Status = "visible";	
       document.getElementById(Div_id).style.visibility = Status;
    }
// Div Title PopUP - END

//================== Print ==================== START
	function printFrame () {
		// Page Has A Print Only Div
		if(document.getElementById('Print_Div')){
			var a = window.open('','','width=700,height=500');
			a.document.open("text/html");
			a.document.write('<html><head></head><body style="padding-left:2px;background-image:none;background-color:#FFFFFF;">');
			a.document.write(document.getElementById('Print_Div').innerHTML);
			a.document.write('</body></html>');
			a.document.close();
			a.print();
			a.close();
		}
		// Print All Top Frame
		else{
		   	parent.thepage.focus();
		    parent.thepage.print();
		}
}
//================== Print ====================== END

//================== Send To Friend ==================== START
	function Send_To_Friend (The_Page_Url) {
		 window.open('Send_To_Friend.asp?The_Page_Url='+The_Page_Url,'Send_To_Frind','width=580,height=170');
}
//================== Send To Friend ====================== END

//================== Add Comment ==================== START
	function Add_Comment (Article_Id) {
		 window.open('Add_Comment.asp?Article_Id='+Article_Id,'Add_Comment','width=400,height=388');
}
//================== Add Comment ====================== END

//================== Player Mute ====================== START
  	function Player_Mute(Element_Id)
	{
		if (document.getElementById(Element_Id).mute==true){
		document.getElementById(Element_Id).mute=false;
		document.Bt_Mute.src="/images/buttons/bigvid_mute.gif"
		}
		else
		{
		document.getElementById(Element_Id).mute=true;
		document.Bt_Mute.src="/images/buttons/bigvid_unmute.gif"							
		}	
	}
//================== Player Mute ====================== END

// =========== TYPE ONLY - Numbers =========== START
function No_Only(e){
	if( (e.keyCode >=48 && e.keyCode <=57) || (e.keyCode >=96 && e.keyCode <=105) || (e.keyCode==8) || (e.keyCode==9) || (e.keyCode==37) || (e.keyCode==39) || (e.keyCode==13) || (e.keyCode==46) ){
		return true;
	}
	else{
//		alert(e.keyCode)
		return false;
	}
}
// =========== TYPE ONLY - Numbers ============= END