//Pop Up Window  :: Java Script Function
function CreateWindow(url, windowName, theWidth, theHeight)
{
	newwindow = window.open(url, windowName,'width=' + theWidth + ', height=' + theHeight + ', resizable = 1, scrollbars=1, top=100, left=250');
	if (window.focus) {newwindow.focus()}
}
