function showDialog(dialogId, height, width) {
 	document.getElementById("dialogConent").src=dialogId;
 	document.getElementById("dialogConent").style.height=height-20;
	document.getElementById("dialogBox").style.height=height;
	document.getElementById("dialogBox").style.visibility="visible";
	
}

function hideDialog(dialogId) {
	document.getElementById("dialogBox").style.visibility="hidden";
}
