//**
//** aURL: target url
//** aHeight: window height
//** aWidth: window width
//**
function targetBlank(aURL, aHeight, aWidth) {
	window.open(
		aURL,
		'',
		'scrollbars=yes,' +
		'menubar=yes,' +
		'height=' + aHeight + ',' +
		'width=' + aWidth + ',' +
		'resizable=yes,' +
		'toolbar=yes,' +
		'location=yes,' +
		'status=yes'
	);
}
