
function showDiv(d) {
	var obj = document.getElementById(d);
	obj.style.visibility = "visible";
	//obj.style.pixelTop = 28;
	//obj.style.pixelLeft = -43;
	//obj.style.Height = 115;
	//obj.style.width  = 285;

	var obj2 = document.getElementById("flashDialog_img");
	obj2.style.top  = 191;
	obj2.style.left = 498;
	//obj2.style.Height = 125;
	//obj2.style.width  = 295;

	document.getElementById("wp3_img_ID").style.cursor = "";
}

function hideDiv(d) {
	var obj = document.getElementById(d);
	obj.style.visibility = "hidden";
	//obj.style.pixelTop = 28;
	//obj.style.pixelLeft = -43;
	//obj.style.Height = 1;
	//obj.style.width  = 1;

	var obj2 = document.getElementById("flashDialog_img");
	obj2.style.top  = 30;
	obj2.style.left = 0;
	//obj2.style.Height = 1;
	//obj2.style.width  = 1;

	//document.getElementById("wp3_img_ID").style.cursor = "pointer";
}

var xDiv = 'flashDiv';
//-Show Div-
function showDivX(){
	showDiv(xDiv);
} 

//-Hide Div-
function hideDivX(){
	hideDiv(xDiv);
}