// newWindow.js
var newWindow;
var width = 0;
var height = 0;

function popWindow(url, width, height) {
	newWindow = window.open(url, '', 'width='+width+',height='+height+',resizable=0,status=1');
	if(window.focus){
		newWindow.focus();
	}
}

