function popitup_newWin(url) {
	newwindow=window.open(url,'name','status=1,scrollbars=1,height=400,width=400');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popitup_newWinbig(url) {
	newwindow=window.open(url,'name','status=1,scrollbars=1,height=500,width=700');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popitup_newWinFull(url) {
	newwindow=window.open(url,'name','status=1,scrollbars=1,resizable=yes,height=650,width=700');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popitup_newWinEdit(url) {
	newwindow=window.open(url,'name','status=1,scrollbars=1,height=570,width=480');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popitup_newWinEmbed(url) {
	newwindow=window.open(url,'name','status=2,scrollbars=1,height=750,width=850');
	if (window.focus) {newwindow.focus()}
	return false;
}