﻿//Modification History

var newwindow;
function popupWindowDynamic(url,height1,width1,xtop1,ytop1)
	{
		xTop = xtop1;
		yTop = ytop1;
		height= height1;
		width= width1;
		newwindow = window.open(url, 'name', 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
	}

