<!--LINK_POP
var url;
var width;
var height;
var props;
function linkPop(url,width,height,props) {
if (props == 0){
	props = ( 'scrollbars=no,status=no,top=50,left=50,width='+width+',height='+height );
	}
	else {
	props = ( 'resizable=yes,toolbar=yes,scrollbars=yes,status=yes,location=yes,top=50,left=50,width='+width+',height='+height );
	}
window.open ( url , '',props );
}
//-->