function popup(file, name, gx, gy, px, py, options) {	
	spawn = window.open(file, name, 'width=' + gx + ',height=' + gy + ',left=' + px + ',top=' + py + ((options != '') ? ',' + options : ''));
	spawn.resizeTo(gx, gy);
	spawn.moveTo(px, py);
	spawn.focus();
	return;
}