//<!-- 


// ------[ OnLoad Init ]------------------------------------------------- //

// ------[ OnLoad Init ]------------------------------------------------- //
AttachEvent(window,'load',SendToFriendInit,false);
function SendToFriendInit() {
	obj = document.getElementById('SendToFriendLnk');
	AttachEvent(obj,'click',SendToFriendDisplay,false);
	obj2 = document.getElementById('CloseSendToFriendLnk');
	AttachEvent(obj2,'click',SendToFriendDisplay,false);
	}
	
function SendToFriendDisplay() {
	obj = document.getElementById("send-to-friend");
	if(!obj.style.display) obj.style.display = 'none';

	state = (obj.style.display == 'block') ? 1 : 0;
	
	if(state) obj.style.display = 'none';
	else obj.style.display = 'block';
	}

// ------[ Side Bar Height ]------------------------------------------------- //
function SetSideBarHeight() {
	objPageContent = document.getElementById("pageContent");
	objPageSideBar = document.getElementById("pageSideBar");
	if((objPageContent != null) && (objPageSideBar != null)) {
		if(objPageContent.offsetHeight > objPageSideBar.offsetHeight) {
			objPageSideBar.style.height = objPageContent.offsetHeight + "px";
			}
		}
	}



//-->