/* __________________________________________________________________________ */function pop(url, target, width, height) {	popup = window.open(url, target, 'toolbar=no,location=no,scrolling=auto,status=no,menubar=no,scrollbars=yes,resizable=no,width='+(width+22)+',height='+(height+101));	popup.focus();}/* __________________________________________________________________________ */function mini_pop(url, target, width, height) {	if ((height+200)>screen.availHeight) {		height = screen.availHeight-200;	}	popup = window.open(url, target, 'toolbar=no,location=no,scrolling=auto,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+(width+42)+',height='+(height+235));	popup.focus();}