document.open();
document.write('<div id="myPopup" style="border-left:1px solid silver;border-bottom:1px solid silver;display:none;position:absolute;background:#fafaf7;z-index:2;cursor:hand" OnClick="hideMyPopup();">'+
'<table width=100% cellspacing=0 cellpadding=0 border=0>' + 
'<tr><td style="border-top:1px solid silver;border-right:1px solid silver;background:url(img/bg.gif)"><table cellspacing=0 cellpadding=0 border=0 style="background:url(img/menus/mtop.gif) no-repeat"><tr height=22><td id="MyPopupTitle" class=tmain style="font-weight:bold;padding-left:8px;color:white" width=100%><td><img hspace=4 src="img/close.gif" border=0></table>' +
'<tr><td style="padding:6px;" id="MyPopupContents"></table></div>' +
'<div id="myPopupShadow" style="display:none;position:absolute;background:#C0C0C0;z-index:1;filter:Alpha(Opacity=55) Blur(Add=0, ShadowOpacity=0.75,Stretch=10,Direction=315)"></div>'
);
document.close();

function hideMyPopup() {
	 document.getElementById("myPopup").style.display='none';
	 document.getElementById("myPopupShadow").style.display='none';
};

function showMyPopup() {
	 document.getElementById("myPopup").style.display='';
	 document.getElementById("myPopupShadow").style.display='';
};

function setMyPopupCord(top, left, width, height) {
	var myObj = document.getElementById('myPopup');
    myObj.style.top=top+"px";
	myObj.style.left=left+"px";
	myObj.style.width=width+"px";
	myObj.style.height=height+"px";
	var myObj2 = document.getElementById('myPopupShadow');
    myObj2.style.top=(top+5) + "px";
	myObj2.style.left=(left+5) + "px";
	myObj2.style.width=width+"px";
	myObj2.style.height=height+"px";
};

function showEnlarge(top, left, width, height, tit, imgId, filt) {
	setMyPopupCord(top,left,width,height);
	document.getElementById("MyPopupContents").innerHTML = "<table cellspacing=0 cellpadding=0 border=0 width=100%><tr><td align=center><img hspace=8 vspace=8 src='CoinsBankNotes/img.asp?id=" + imgId + "' class=" + filt+ "></table>";
	document.getElementById("MyPopupTitle").innerHTML = tit;
	showMyPopup();
};
