<!-- //
//
//	JavaScript functions to handle popup windows
//
//	© 2005 FDF Infonet
//
var PoppedWindow;

function PopUpWindow(url, name) {
	PoppedWindow = window.open(url, name, "width=600,height=600,resizable,scrollbars");
	PoppedWindow.focus();
	return false;
}
// -->
