// צובע שורה עם מעבר עכבר - 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=140');
}
//================== 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=330');
}
//================== Add Comment ====================== END

