function CVVPopUpWindow(url) 
{
	window.open(url, 'popupWindow', 'toolbar=no, location=no, directories=no, status=no,menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=600, height=233, screenX=150, screenY=150, top=150, left=150')
}

// BEGIN:  Added for Dynamic MoPics v3.000
function popupWindow(url) 
{
	var newImageHeight = 400;
	var imageWidth = 460;
	var yPos = ((screen.height / 2) - (parseInt(newImageHeight) / 2));
	var xPos = ((screen.width / 2) - (parseInt(imageWidth) / 2));
	imageWindow = window.open(url, 'popupWindows', 'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=' + imageWidth + ',height=' + newImageHeight + ', screenY=' + yPos + ', screenX=' + xPos + ', top=' + yPos + ', left=' + xPos);
	imageWindow.moveTo(xPos, yPos);
	imageWindow.resizeTo(parseInt(imageWidth), parseInt(newImageHeight));

	if (window.focus) 
	{
		imageWindow.focus();
	}
}

function popupWindowScroll(url) 
{
	var newImageHeight = 500;
	var imageWidth = 560;
	var yPos = ((screen.height / 2) - (parseInt(newImageHeight) / 2));
	var xPos = ((screen.width / 2) - (parseInt(imageWidth) / 2));
	imageWindow = window.open(url, 'popupWindows', 'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=' + imageWidth + ',height=' + newImageHeight + ', screenY=' + yPos + ', screenX=' + xPos + ', top=' + yPos + ', left=' + xPos);
	imageWindow.moveTo(xPos, yPos);
	imageWindow.resizeTo(parseInt(imageWidth), parseInt(newImageHeight));

	if (window.focus) 
	{
		imageWindow.focus();
	}
}

function popupImage(url, imageHeight, imageWidth) 
{
	var newImageHeight = (parseInt(imageHeight) + 60);
	var newImageWidth = (parseInt(imageWidth) + 60);
	var yPos = ((screen.height / 2) - (parseInt(newImageHeight) / 2));
	var xPos = 459;
	imageWindow = window.open(url, 'popupImages', 'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=' + newImageWidth + 'px, height=' + newImageHeight + 'px , screenY=' + yPos + ', screenX=' + xPos + ', top=' + yPos + ', left=' + xPos);
	if (window.focus) 
	{
		imageWindow.focus();
	}
}
// END:  Added for Dynamic MoPics v3.000