	//Contact VoxCafe for any Information :: info@voxcafe.com or webmaster@voxcafe.com
	//Function to Switch Class on MouseOver Css style ################################

	function switchClass(obj,strClassName) {
		obj.className	= strClassName;
	}

	//Function to redirect url on navigation linkbar #################################

	function gotoURL(strUrl) {
		location = strUrl;
	}

	//Function for getting user information screen,OS,Mozilla etc. ###################

	var ScrnSize = "UnCommon"
	
	  if (navigator.appVersion.indexOf("4.") != -1 && 
	      navigator.appName.indexOf("Explorer") != -1) {
	     ScrnSize = screen.width + "x" + screen.height;
	  }
	  if (navigator.appVersion.indexOf("4.") != -1 && 
	      navigator.appName.indexOf("Netscape") != -1) {
	     ScrnSize = screen.width + "x" + (screen.height); //Netscape sees 19 pixels less on Height
	}
  
	//Function for adding voxcafe to favorites #######################################

	function addbookmark()
	{
	bookmarkurl="http://www.voxcafe.com"
	bookmarktitle="A Creative Cafe..."
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}