function PopUpNewWindow(link, name, width, height)
{
	if(width == null)
		width = 700;
	if(height == null) 
		height = 600;

	var win = window.open(link, name, 'width=' + width + ',height=' + height + ', toolbar=1, menubar=0, scrollbars=2, resizable ,centered=1');
	if(win != null) {
		win.focus();
		win.creator=self;
		return false;
	}
	else {
		alert('The details window cannot be open. Please turn off your pop-up blocker');
		return false;
	}	
}