/******************************************************************************
' Filename:       functions.js
' Author:         Ebrahim Zabihi
' E-Mail:					Ebrahim_Zabihi@yahoo.com 
' Project:        Usefull functions
' =============================================================================
' Copyright (c) 2007, Ebrahim Zabihi. All rights reserved.
' =============================================================================
'
*******************************************************************************/

function AddToFav2()
{
  var currURL = new String(location.href);
  var currTitle = new String(document.title);
  if (window.sidebar) { // Mozilla Firefox Bookmark	
	  window.sidebar.addPanel(currTitle, currURL,"");	} 
	else if( window.external ) { // IE Favorite		
	  window.external.AddFavorite(currURL, currTitle); }	
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
}

function imgsrcchange(rol)
{//USE THIS : onmouseover="imgsrcchange(1)" onmouseout="imgsrcchange(0)"
picname = event.srcElement.src;
var imgsrc
	if (rol==1)
	{
	imgsrc=picname.substr(0,(picname.length)-4) + "_over" + picname.substr((picname.length)-4,picname.length)
	}
	else
	{
	imgsrc=picname.substr(0,(picname.length)-9) + picname.substr((picname.length)-4,picname.length)
	}
event.srcElement.src = imgsrc
}
