function shareThis(){
	//alert('test the sharethis widget');
	var widget = document.getElementById('shareThisFlash').getElementsByTagName('a')[0];
	if(document.createEvent) {
		var clickEvent = window.document.createEvent("MouseEvent"); 
        clickEvent.initEvent("click", false, true); 
        widget.dispatchEvent(clickEvent); 
		var browserName=navigator.appName;
		/*if(browserName = 'Netscape'){*/
			Func1();
			/*setTimeout("Func1()", 1000);*/
		/*}*/
	}
	else if(widget.fireEvent){
		widget.fireEvent('onclick');
		Func1();
		//alert('test the else if statment');
	}
}
function Func1(){
	var lightbox_obj = document.getElementById("lightbox");
		if(lightbox_obj != null){
			var lightbox_left = lightbox_obj.style.left ;
			var lightbox_top = lightbox_obj.style.top ;
			var sharebox_left = parseInt(lightbox_left) + 185;  
			var sharebox_top = parseInt(lightbox_top) + 35;  
			document.getElementById("stwrapper").style.left = sharebox_left+"px";
			document.getElementById("stwrapper").style.top = sharebox_top+"px";
		}
}
