document.getElementById('PopUpMiddle').innerHTML = "<iframe align=\"top\" frameborder=\"0\" scrolling=\"yes\" width=\"100%\" name=\"ifr\" id=\"ifr\" scrolling =\"yes\"></iframe>"
var IFrameObj;
IFrameObj = frames['ifr'];

function openpopup(url, popupwidth, popupheight, popLeft, popTop, heading) {

	document.getElementById('PopUpContent').style.display = 'block';
	document.getElementById('PopUpContent').style.left = popLeft + 'px';
	document.getElementById('PopUpContent').style.top = popTop + 'px';
	document.getElementById('PopUpContent').style.height = popupheight + 'px';
	document.getElementById('PopUpContent').style.position = 'absolute';

	document.getElementById('PopUpTop').style.width = popupwidth + "px"
	document.getElementById('PopUpTop').style.height = '0px'

	document.getElementById('PopUpTop').style.position = 'absolute';

	document.getElementById('PopUpMiddle').style.width = popupwidth + "px"
	document.getElementById('PopUpMiddle').style.height = popupheight + "px"
	document.getElementById('PopUpMiddle').style.position = 'absolute';

	document.getElementById('ifr').style.height = popupheight + "px"

	IFrameObj.location.href = (url);
	return false;
}
function closeme() {
	document.getElementById('PopUpContent').style.display = 'none';
}
function PopupCenter(pageURL, title, w, h) {
	var left = (screen.width / 2) - (w / 2);
	var top = (screen.height / 2) - (h / 2);
	var targetWin = window
			.open(
					pageURL,
					title,
					'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='
							+ w
							+ ', height='
							+ h
							+ ', top='
							+ top
							+ ', left='
							+ left);
}

