

function Popup(url,width,Height)
//************************************************
// OPEN A POP WINDOW 
//************************************************
	{
	var popupWidth = (screen.availwidth / 2) + width;
	var popupHeight = (screen.availheight / 2) + Height;
	var popupTop = (popupHeight / 2) - (Height);
	var popupLeft = (popupWidth / 2) - (width);
	popupwin = window.open(url, "new_page","top=" + popupTop + ",left=" + popupLeft + ",width=" + popupWidth + ",height=" + popupHeight + "location=No,scrollbars=No");
	}

function PopupV(url,width,Height)
//************************************************
// OPEN A POP WINDOW 
//************************************************
	{
	var popupWidth = (screen.availwidth / 2) + width;
	var popupHeight = (screen.availheight / 2) + Height;
	var popupTop = (popupHeight / 2) - (Height);
	var popupLeft = (popupWidth / 2) - (width);
	popupwin = window.open(url, "new_page","top=" + popupTop + ",left=" + popupLeft + ",width=" + popupWidth + ",height=" + popupHeight + "location=Yes,scrollbars=Yes");
	}




