function popFull(url,title) {
		winOptions = 'toolbar=1,location=1,menubar=1,directories=1,screenx=0,screeny=0,top=0,left=0,status=1,menubar=1,scrollbars=1,resizable=1,width=1000,height=800';
		var temp = window.open(url,title, winOptions);
		temp.focus();
}

function popSized(url,title,width,height) {
		winOptions = 'toolbar=1,location=0,menubar=0,directories=0,screenx=0,screeny=0,top=0,left=0,status=0,menubar=1,scrollbars=1,resizable=1,width=' + width + ',height='+height;
		var temp = window.open(url,title, winOptions);
		temp.focus();
}



function openTBiframe(url,width,height){

   TB_special( url + '?KeepThis=true&TB_iframe=true&height=' + height + '&width=' + width + '&modal=true');
}


