function popUpTopRight(window_URL,target_name,w,h,show_toolbar,show_menubar)  
{
	width=w||"0";
	height=h||"0";
	toolbar=show_toolbar||"0";
	menubar=show_menubar||"0";
	topPosition="0";
	leftPosition="0";
	screenWidth=screen.width;
	screenHeight=screen.height;

	if (width=="0") { 
		width="640";
	}
	if (height=="0") {
		height="500";
	}

	if (leftPosition=="0") {
		if (width > screenWidth) {
 			width=screenWidth;
			leftPosition=0;
		} else {
			leftPosition=(screenWidth-width-20);
		}
	}
	if (topPosition=="0") {
		if (height > screenHeight) {
 			height=screenHeight;
			topPosition=0;
		} else {
			topPosition=10;
		}
	}

	openParam2 = "toolbar="+toolbar+",location=0,status=0,menubar="+menubar+",scrollbars=no,copyhistory=0,resizable=0,alwaysRaised,titlebar=0,width="+width+",height="+height+",top="+topPosition+",left="+leftPosition;
	var win=window.open(window_URL, target_name, openParam2);
	win.focus();
	return false;
}

function closeWindow() {
	window.close();
}


