/*	Copyright (c) 2003, Ivascenco Vladimir. All rights reserved.
	
	PRODUCT
	  ShareStream Script File. Version 1.0
	  
	FILENAME
	  scripts.js
	  
	DESCRIPTION
	  This file is the part of ShareStream Web-site.
	  
	WARNING
	  This file is property of Ivascenko Vladimir. Any usage in any purposes
	  without author notificaton and agreement are strictly prohibited.
*/

var tmpBgColor;


function GetEMail() {
	var sMylo="i_vlad";
	sMylo+="imir"+"@";
	sMylo+="moldovacc"+".md";
	return sMylo;
}

function document.onmouseover() {
	var oObj=event.srcElement;
	if (oObj.HL==1) {
		HighLight(oObj);
	}
}

function document.onmouseout() {
	var oObj=event.srcElement;
	if (oObj.HL==1) {
		unHighLight(oObj);
	}
}

function HighLight(oObj) {
	tmpBgColor=oObj.style.backgroundColor;
	oObj.style.backgroundColor="#CCCCCC";
}

function unHighLight(oObj) {
	oObj.style.backgroundColor=tmpBgColor;
}

function SelectBookmark(oObj) {
	var i, sClassName="Bookmark_NonSelected";
	oOverview.style.display="none";
	oDownload.style.display="none";
	oBuy.style.display="none";
	document.all("bmOverview").className=sClassName;
	document.all("bmDownload").className=sClassName;
	document.all("bmBuy").className=sClassName;
	oObj.className="Bookmark_Selected";
	switch (oObj.id) {
	case "bmOverview": oOverview.style.display="block"; break;
	case "bmDownload": oDownload.style.display="block"; break;
	case "bmBuy": oBuy.style.display="block"; break;
	}
}
