function $(id) {	
	return document.getElementById(id);
}

function $$(id) {
    return document.getElementById('ctl00_CPHP_' + id);
}

function PopUpNewWindow(link, name, width, height)
{
	var win = window.open(link, name, 'width=' + width + ',height=' + height + ', 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;
	}	
}
