/* WINDOW OPEN */

function windopen(p, n, w, h) {
	window.open(
		p,
		n,
		'width=' + w + ', height=' + h + ', toolbar=0, menuber=0, scrollbars=0, status=0, resizable=0, top=0, left=0'
	);
}

