function openguide(theUrl) {
	NewWindow=window.open(theUrl, 'ABB', 'scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,width=640,height=500');
	NewWindow.focus();
}

function openguidesize(theUrl, width, height) {
	NewWindow=window.open(theUrl, 'ABB', 'scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,width='+width+',height='+height);
	NewWindow.focus();
}