// JavaScript Document
function zoom(winWidth,winHeight,scrollbars,toolbar,top,left,fileSrc){
		var newParameter = "width=" + winWidth + ",height=" + winHeight;
		newParameter += ",scrollbars=" + scrollbars + ",toolbar=" + toolbar + ",top=" + top + ",left=" + left;
		newWindow = open (fileSrc,"a",newParameter);
	}
