
// -- open new window
function openWindow(url, width, height) {
	var win = window.open(url, '',
		'width=' + width + ',height=' + height + 
		',scrollbars=yes,resizable=yes,toolbar=no,menubar=no,location=no,status=no');

	return win;
}

