//
// START OAS_ad script
OAS_url = 'http://ads.belointeractive.com/RealMedia/ads/';
OAS_query = '';
OAS_target = '_top';
//RL -050623 -Campaign Non Target fetch
//Check for non target words
if( getSearchParamValue("search_words"))
{
OAS_query="&nTar=" + getSearchParamValue("search_words");
} else {
if( getSearchParamValue("nTar"))
{
OAS_query="&nTar=" + getSearchParamValue("nTar");
} else {
OAS_query='&nTar=none';
}
}
if (typeof OAS_sitepage == 'undefined') {
OAS_sitepage='';
}
if (typeof OAS_listpos == 'undefined') {
OAS_listpos='';
}
OAS_version = 10;
OAS_rn = '001234567890'; OAS_rns = '1234567890';
OAS_rn = new String (Math.random()); OAS_rns = OAS_rn.substring (2, 11);
function OAS_NORMAL(pos) {
document.write('');
document.write('
');
}
OAS_version = 11;
if ((navigator.userAgent.indexOf('Mozilla/3') != -1) || (navigator.userAgent.indexOf('Mozilla/4.0 WebTV') != -1))
OAS_version = 10;
if (OAS_version >= 11)
document.write('<\/SCRIPT>');//-->
function OAS_AD(pos) {
if (OAS_version >= 11)
OAS_RICH(pos);
else
OAS_NORMAL(pos);
}
function getSearchParamValue( sKey )
{
var sString = document.location.search;
if(sString && sString.indexOf(sKey))
{
//Whack ? in first pos
sString = sString.substring(1);
var sArray= sString.split('&');
if(sArray && sArray.length > 0)
{
for(var s=0; s< sArray.length; s++)
{
var keyVal=sArray[s].split('=');
if(keyVal[0] == sKey)
{
return keyVal[1];
}
}
return "";
}
return "";
}
return "";
}
// END OAS_ad script
//
// START browser check
var userAgent = navigator.userAgent;
var IE4 = (document.all && !document.getElementById) ? true : false;
var IE5 = (document.all && document.getElementById) ? true : false;
var NS4 = (document.layers) ? true : false;
var NS6 = (document.getElementById && !document.all) ? true : false;
var doAll = ((IE4) || (IE5)) ? true : false;
// END browser check
//
// START date/time script
function bitime(year,month,day,hours,minutes,seconds) {
var bimonths=new Array(12);
bimonths[1]="January";
bimonths[2]="February";
bimonths[3]="March";
bimonths[4]="April";
bimonths[5]="May";
bimonths[6]="June";
bimonths[7]="July";
bimonths[8]="August";
bimonths[9]="September";
bimonths[10]="October";
bimonths[11]="November";
bimonths[12]="December";
var bidays= new Array(7);
bidays[0]="Sunday";
bidays[1]="Monday";
bidays[2]="Tuesday";
bidays[3]="Wednesday";
bidays[4]="Thursday";
bidays[5]="Friday";
bidays[6]="Saturday";
var bitimezone='';
var bilocaltime=new Date();
var bioffsetmills=(bilocaltime.getTimezoneOffset()*60*1000);
var biservertimemills=(Date.UTC(year,month-1,day,hours,minutes,seconds));
var biadjustedtime=new Date();
biadjustedtime.setMilliseconds(-biadjustedtime);
biadjustedtime.setMilliseconds(biservertimemills);
// start section to adjust for Netscape
var biadjustedtimestring=biadjustedtime.toString();
// check for time zone spelled out
if (biadjustedtimestring.indexOf('Time') !=-1) {
//remove anything after 'Time'
biadjustedtimestring=biadjustedtimestring.substring(0,biadjustedtimestring.indexOf('Time')+4);
//get index of space before 'Time'
var bitemptimestring=biadjustedtimestring.substring(0,biadjustedtimestring.lastIndexOf(' '));
//get index of space before word before 'Time'
bitemptimestring=bitemptimestring.substring(0,bitemptimestring.lastIndexOf(' '));
// get index of second space before 'Time' to get to start of time zone
var bistartindex=bitemptimestring.lastIndexOf(' ');
// we have the start, so get the time zone from the date string
bitemptimestring=biadjustedtimestring.substring(bistartindex,biadjustedtimestring.length);
// see if we need to remove a '('
if (bitemptimestring.indexOf('(')==1) {
// remove the '('
bitemptimestring=bitemptimestring.substring(2,bitemptimestring.length);
}
bitimezone=bitemptimestring;
// end section to adjust for Netscape.
} else {
bitimezone=biadjustedtime.toString();
bitimezone=bitimezone.substring(0,bitimezone.lastIndexOf(' '));
bitimezone=bitimezone.substring(bitimezone.lastIndexOf(' ')+1,bitimezone.length);
// make sure the time zone is 3 characters, else make it blank because it hasn't matched our cases
if (bitimezone.length>3) {
bitimezone='';
}
}
if (navigator.userAgent.indexOf("Safari") != -1) {
biadjustedtime=new Date();
}
var bimonth=bimonths[biadjustedtime.getMonth() + 1];
var bidate=biadjustedtime.getDate();
var biday = bidays[biadjustedtime.getDay()];
var biyear=biadjustedtime.getFullYear();
var bihours=biadjustedtime.getHours();
var biminutes=biadjustedtime.getMinutes();
// RL -040130 - Removed this section, not needed now
// if (day==31) {
// var lastdaybug=1;
// }
//
// if (lastdaybug == 1) {
// if (bidate == 1) {
// bidate = 31;
// bimonth=bimonths[biadjustedtime.getMonth()]
// } else {
// bidate = 31;
// bidate = bidate - 1;
// }
//
// if (biadjustedtime.getDay() > 0) {
// biday = bidays[biadjustedtime.getDay()-1];
// } else if (biadjustedtime.getDay()==0) {
// biday = bidays[6];
// }
// }
var biampm='a.m.';
//change from 24h to 12h clock
if (bihours==12){
biampm='p.m.';
} else if (bihours==0) {
biampm='a.m.';
bihours=12;
} else if (bihours>12) {
bihours=(bihours-12);
biampm='p.m.';
}
//add a zero in front of the minutes if it's a single digit
if (biminutes<10) {
biminutes=('0' + biminutes);
}
//write out the date
document.write(biday + ' ' + bimonth + ' ' + bidate +', ' + biyear + ' ' + bihours + ':' + biminutes + ' ' + biampm + ' ' + bitimezone);
}
// END date/time script
//
// START membermessage script
function message(cookiename,membermessage,visitormessage) {
if (document.cookie.length > 0) { // if there are any cookies
memberstatus = document.cookie.indexOf(cookiename)
begin = document.cookie.indexOf(cookiename+"=");
if (begin != -1) // Note: != means "is not equal to"
{
begin += cookiename.length+1;
end = document.cookie.indexOf(";", begin);
if (end == -1) end = document.cookie.length;
cookiedata = document.cookie.substring(begin, end);
}
if (memberstatus != -1) { // if cookie exists
var regEx = new RegExp("|","g");
//check for a member name
var checkforname = regEx.exec(cookiedata);
if (checkforname){
var userArray = cookiedata.split("|");
var usersname = userArray[1];
//var mmregexp = new RegExp("Member");
if (usersname){
membermessage = membermessage.replace("Member", usersname)
//var not = ' | Not ' + usersname + '?
';
//membermessage = membermessage.replace("", not)
}
document.write(membermessage);
} else{
document.write(membermessage);
}
}else{
document.write(visitormessage);
}
}
}
// END membermessage script
//
// START crumbtrail script
function bicrumbtrail(anchorid, divname, tagname, nametomatch, newstylename) {
var vColl, vNSCollGrp;
if(doAll) {
vColl = document.all.item(anchorid); //collection of all anchors with id= ICE2menuitem
}
if(NS6) {
vNSCollGrp = document.getElementById(divname);
vColl = vNSCollGrp.getElementsByTagName(tagname); //collection of all anchors within left div.
}
if (vColl != null) {
//NS6 is super-sensitive, so all numbers are parseInt.
for (i=parseInt(0); i
// Certain modifications (setFontSize and related) by Eric Meyer
//
function setActiveStyleSheet(title) {
var i, a, main;
for(i=0; (a = document.getElementsByTagName('link')[i]); i++) {
if(a.getAttribute('rel').indexOf('style') != -1 && a.getAttribute('title')) {
a.disabled = true;
if(a.getAttribute('title') == title) {
a.disabled = false;
createCookie('themeName', title, 365)
}
}
}
}
function getActiveStyleSheet() {
var i, a;
for(i=0; (a = document.getElementsByTagName('link')[i]); i++) {
if(a.getAttribute('rel').indexOf('style') != -1 && a.getAttribute('title') && !a.disabled) return a.getAttribute('title');
}
return null;
}
function getPreferredStyleSheet() {
var i, a;
for(i=0; (a = document.getElementsByTagName('link')[i]); i++) {
if(a.getAttribute('rel').indexOf('style') != -1
&& a.getAttribute('rel').indexOf('alt') == -1
&& a.getAttribute('title')
) return a.getAttribute('title');
}
return null;
}
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = '; expires='+date.toGMTString();
}
else expires = '';
document.cookie = name+'='+value+expires+'; path=/; domain=' + getRootDomain() + ';';
}
function readCookie(name) {
var nameEQ = name + '=';
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function setFontSize(fontVal) {
var fontSet = document.getElementById('fontSet');
var docBase = new Array();
docBase = document.getElementsByTagName('body');
if (!fontVal) {
fontVal = document.getElementById('fontSet').value;
}
var docSize = fontVal+'px';
createCookie('baseTextSize', fontVal, 3650);
docBase[0].style.fontSize = docSize;
if (fontSet) {
fontSet.value = fontVal;
}
}
window.onload = function(e) {
/*
var cookie = readCookie('themeName');
var title = cookie ? cookie : getPreferredStyleSheet();
setActiveStyleSheet(title);
*/
var cookie2 = readCookie('baseTextSize');
if (cookie2) {
setFontSize(cookie2);
}
}
/*
window.onunload = function(e) {
var title = getActiveStyleSheet();
createCookie('themeName', title, 365);
}
*/
//END styleswitcher script
//START Tacoda head script
var Tacoda_AMS_DDC_snippet_version = "1.2";
var Tacoda_AMS_DDC_clist = new Array("TID", "RMID", "img");
var Tacoda_AMS_DDC_clist_notset = null;
var Tacoda_AMS_DDC_keys = new Array();
var Tacoda_AMS_DDC_values = new Array();
var Tacoda_AMS_DDC_vars_num = 0;
function Tacoda_AMS_DDC_getCookie(name) {
var cname = name + "=";
var dc = document.cookie;
if (dc.length > 0) {
for(var begin = dc.indexOf(cname); begin != -1; begin = dc.indexOf(cname, begin)) {
if((begin != 0) && (dc.charAt(begin - 1) != ' ')) {
begin++;
continue;
}
begin += cname.length;
var end = dc.indexOf(";", begin);
if (end == -1)
end = dc.length;
return unescape(dc.substring(begin, end));
}
}
return Tacoda_AMS_DDC_clist_notset;
}
function Tacoda_AMS_DDC_addPair(key, value) {
Tacoda_AMS_DDC_keys[Tacoda_AMS_DDC_vars_num] = key;
Tacoda_AMS_DDC_values[Tacoda_AMS_DDC_vars_num] = value;
Tacoda_AMS_DDC_vars_num++;
}
function Tacoda_AMS_DDC_collect_vars() {
var Tacoda_AMS_DDC_vars_as_string = "";
for(var i = 0; i < Tacoda_AMS_DDC_vars_num; i++) {
Tacoda_AMS_DDC_vars_as_string += "&var_" + escape( Tacoda_AMS_DDC_keys[i] ) + "=" + escape( Tacoda_AMS_DDC_values[i] ) ;
}
return Tacoda_AMS_DDC_vars_as_string;
}
function Tacoda_AMS_DDC(Tacoda_AMS_DDC_img_url, Tacoda_AMS_DDC_js) {
Tacoda_AMS_DDC_js = parseFloat(Tacoda_AMS_DDC_js);
Tacoda_AMS_DDC_args = "?" + Math.random() + "&snippet_version=" + Tacoda_AMS_DDC_snippet_version + "&referrer=" + escape(document.referrer) + "&page=" + escape(window.location.href);
Tacoda_AMS_DDC_args += "&timezone=" + (new Date()).getTimezoneOffset();
for(var i = 0; i < Tacoda_AMS_DDC_clist.length; i++) {
var clist_name = Tacoda_AMS_DDC_clist[i];
var clist_value = Tacoda_AMS_DDC_getCookie(clist_name);
if(clist_value != null) {
Tacoda_AMS_DDC_args += "&clist_" + escape(clist_name) + "=" + escape(clist_value);
}
}
Tacoda_AMS_DDC_args += Tacoda_AMS_DDC_collect_vars();
var Tacoda_AMS_DDC_fake_image = new Image();
Tacoda_AMS_DDC_fake_image.src = Tacoda_AMS_DDC_img_url + Tacoda_AMS_DDC_args;
}
//END Tacoda head script
//START bipoll script
function OpenPopup(url) {
openpopup =
window.open(url,"poll","width=520,height=450,left=0,top=50,scrollbars,resizable");
openpopup.opener.name = "opener";
}
function MM_displayStatusMsg(msgStr) { //v2.0
status=msgStr;
document.MM_returnValue = true;
}
//END bipoll script
//START popup script used for trivia, slideshows etc.
function openWin(html,winname,ht,wd,mb,lb,tb,sb)
{
// convert all characters to lowercase to simplify testing
var agt=navigator.userAgent.toLowerCase();
// *** BROWSER VERSION ***
// Note: On IE5, these return 4, so use is_ie5up to detect IE5.
var is_major = parseInt(navigator.appVersion);
var is_minor = parseFloat(navigator.appVersion);
// Note: Opera and WebTV spoof Navigator. We do strict client detection.
// If you want to allow spoofing, take out the tests for opera and webtv.
var is_nav = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
&& (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
&& (agt.indexOf('webtv')==-1));
var is_nav3 = (is_nav && (is_major == 3));
var is_nav4up = (is_nav && (is_major >= 4));
var is_navonly = (is_nav && ((agt.indexOf(";nav") != -1) ||
(agt.indexOf("; nav") != -1)) );
var is_ie = (agt.indexOf("msie") != -1);
var is_ie3 = (is_ie && (is_major < 4));
var is_ie4 = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")==-1) );
var is_ie4up = (is_ie && (is_major >= 4));
var is_ie5 = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) );
var is_ie5up = (is_ie && !is_ie3 && !is_ie4);
// KNOWN BUG: On AOL4, returns false if IE3 is embedded browser
// or if this is the first browser window opened. Thus the
// variables is_aol, is_aol3, and is_aol4 aren't 100% reliable.
var is_aol = (agt.indexOf("aol") != -1);
var is_aol3 = (is_aol && is_ie3);
var is_aol4 = (is_aol && is_ie4);
var attr = "scrollbars,resizable,height=" + ht + ",width=" + wd + ",menubar=" + mb + ",locationbar=" + lb + ",toolbar=" + tb + ",statusbar=" + sb
if (is_nav3 || is_nav4up)
{
win1 = window.open(html,winname,attr)
win1.focus()
}
else if (is_ie4up)
{
win1 = window.open(html,winname,attr)
win1.focus()
}
else{
window.open(html,winname,attr);
}
}
function MM_displayStatusMsg(msgStr) { //v2.0
status=msgStr;
document.MM_returnValue = true;
}
// tristan's function
function getRootDomain() {
var hostname = window.location.hostname;
var firstDot = hostname.indexOf(".");
// not in use currently, would only apply to domains with multiple sub-domains in the url string
// var lastDot = hostname.lastIndexOf(".");
var rootdomain = hostname.substring(firstDot + 1);
return(rootdomain);
}
//END popup script
// Dallas sites slideshow popup code
// size 714 x 479:
function ssPop2(pageName) {
var ssWin = window.open(pageName,"largeWin","top=0,left=0,width=960,height=760,directories=no,resizable=yes,menubar=no,scrollbars=yes,toolbar=no,location=no,statusbar=no");
ssWin.focus();
}
// size 472 x 300:
function ssPop(pageName) {
var ssWin = window.open(pageName,"midWin","top=0,left=0,width=650,height=690,directories=no,resizable=yes,menubar=no,scrollbars=yes,toolbar=no,location=no,statusbar=no");
ssWin.focus();
}
// End Dallas site slideshow popup code
//
// dmn.photoXport - autoexport image popper window resizer with ads
//
// 10.16.2004 dapeters.tdmn
function DOMCall(name) {
if (document.layers)
return document.layers[name];
else if (document.all)
return document.all[name];
else if (document.getElementById)
return document.getElementById(name);
}
function showPic (whichpic) {
DOMCall('placeholder').src = whichpic.href;
DOMCall('placeholder').alt = whichpic.alt + ' ';
DOMCall('placeholder').title = whichpic.title + ' ';
DOMCall('placeholder').height = whichpic.height;
DOMCall('placeholder').width = whichpic.width;
DOMCall('placeholder').photog = whichpic.photog + ' ';
return false;
}
thissite = window.location.hostname;
var pairs = thissite.split(".");
// thissite = 'www.dallasnews.com'; // for debug purposes
var domain_name = pairs[1];
var linkString = ''
if ((thissite == 'www.dallasnews.com')) {
linkString = ' ' + '| ' ;
} else {
linkString = '';
}
var dmnOAS_rn = '001234567890';
var dmnOAS_rns = '1234567890';
var dmnOAS_rn = new String (Math.random());
var dmnOAS_rns = dmnOAS_rn.substring (2, 11);
function clickedImage (whichpic) {
imageUrl = whichpic.src; // grab the url of the medium image.
imageWindow = window.open( "", "photo", "width=778,height=350,scrollbars,resizable,screenX=80,screenY=40,left=80,top=40");
imageWindow.document.write('Belo Interactive');
imageWindow.document.write(unescape('%3Cmeta%20http-equiv%3D%22Content-Type%22%20content%3D%22text/html%3B%20charset%3Diso-8859-1%22%3E'));
imageWindow.document.write(unescape('%3Clink%20href%3D%22http%3A//www.dallasnews.com/sharedcontent/dws/css/survey.css%22%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20media%3D%22all%22%20/%3E%3Clink%20href%3D%22http%3A//www.dallasnews.com/s/includes/ice2/css/bi.css%22%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20media%3D%22all%22%20/%3E%3Clink%20href%3D%22http%3A//www.dallasnews.com/bi/css/bi.css%22%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20media%3D%22all%22%20/%3E%3Clink%20href%3D%22http%3A//www.dallasnews.com/s/dws/css/dallas.css%22%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20media%3D%22all%22%20/%3E%20%3Clink%20href%3D%22http%3A//www.dallasnews.com/sharedcontent/dws/css/survey.css%22%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20media%3D%22all%22%20/%3E'));
imageWindow.document.write(unescape('%3Cscript%20language%3D%22JavaScript1.2%22%3Efunction%20ResizeWindow%28imageWidth%2CimageHeight%29%20%7Bvar%20windowWidth%20%3D%20ToInt%28imageWidth%29%20+%20428%3Bvar%20windowHeight%20%3D%20ToInt%28imageHeight%29%20+%20300%3B%20var%20availableWidth%20%3D%20screen.availWidth%3B%20var%20availableHeight%20%3D%20screen.availHeight%3Bvar%20windowLeft%20%3D%20%28%28availableWidth%20-%20windowWidth%29%20/%202%29%3Bvar%20windowTop%20%3D%20%28%28availableHeight%20-%20windowHeight%29%20/%202%29%3Bself.window.moveTo%28windowLeft%2CwindowTop%29%3B%20self.window.resizeTo%28windowWidth%2CwindowHeight%29%3B%20%20%7Dfunction%20ToInt%20%28string%29%20%7B%20%09return%20%28string%20%3E%200%20%3F%20Math.floor%28string%29%20%3A%20Math.ceil%20%28string%29%20%29%3B%20%7D%20function%20dmnGoto%28mainUrl%29%20%7B%20%09self.opener.location.href%20%3D%20mainUrl%3B%20self.close%28%29%3B%20%7D%20%3C/script%3E'));
imageWindow.document.write(unescape('%3Cscript%20language%3D%22JavaScript1.2%22%3Efunction%20ResizeWindow%28imageWidth%2CimageHeight%29%20%7Bvar%20windowWidth%20%3D%20ToInt%28imageWidth%29%20+%20428%3Bvar%20windowHeight%20%3D%20ToInt%28imageHeight%29%20+%20300%3B%20var%20availableWidth%20%3D%20screen.availWidth%3B%20var%20availableHeight%20%3D%20screen.availHeight%3Bvar%20windowLeft%20%3D%20%28%28availableWidth%20-%20windowWidth%29%20/%202%29%3Bvar%20windowTop%20%3D%20%28%28availableHeight%20-%20windowHeight%29%20/%202%29%3Bself.window.moveTo%28windowLeft%2CwindowTop%29%3B%20self.window.resizeTo%28windowWidth%2CwindowHeight%29%3B%20%20%7Dfunction%20ToInt%20%28string%29%20%7B%20%09return%20%28string%20%3E%200%20%3F%20Math.floor%28string%29%20%3A%20Math.ceil%20%28string%29%20%29%3B%20%7D%20function%20dmnGoto%28mainUrl%29%20%7B%20%09self.opener.location.href%20%3D%20mainUrl%3B%20self.close%28%29%3B%20%7D%20%3C/script%3E'));
imageWindow.document.write('' );
imageWindow.document.write('OAS_sitepage = thissite + \'/photos\';');
imageWindow.document.write('OAS_target = \'_top\';');
imageWindow.document.write('OAS_version = 10;');
imageWindow.document.write('OAS_listpos = \'Top,Position1,Position2,Left,Left1,Bottom1,Bottom2\';');
imageWindow.document.write('OAS_rn = \'001234567890\';');
imageWindow.document.write('OAS_rns = \'1234567890\';');
imageWindow.document.write('OAS_rn = new String (Math.random());');
imageWindow.document.write('OAS_rns = OAS_rn.substring (2, 11);');
imageWindow.document.write('var oaslink = \'\';');
imageWindow.document.write('var oasimg = \'
\';');
imageWindow.document.write('' );
imageWindow.document.write('');
imageWindow.document.write(unescape('%3Ctable%20width%3D%22100%25%22%20border%3D%220%22%20cellspacing%3D%220%22%20cellpadding%3D%220%22%3E%20%3Ctr%3E%3Ctd%20colspan%3D%224%22%20bgcolor%3D%22%23000000%22%3E%3Cimg%20src%3D%22http%3A//www.dallasnews.com/sharedcontent/dws/img/pixel.gif%22%20width%3D%221%22%20height%3D%221%22%3E%3C/td%3E%20%3C/tr%3E%3Ctr%3E%3Ctd%20bgcolor%3D%22%23999999%22%20width%3D%2210%22%20valign%3D%22middle%22%3E%3Cimg%20src%3D%22http%3A//www.dallasnews.com/sharedcontent/dws/img/pixel.gif%22%20width%3D%227%22%20height%3D%221%22%3E%3C/td%3E%3Ctd%20bgcolor%3D%22%23999999%22%20width%3D%227%22%20valign%3D%22middle%22%3E%3Cimg%20src%3D%22http%3A//www.dallasnews.com/sharedcontent/dws/img/pop_arrow.gif%22%20width%3D%2213%22%20height%3D%2219%22%3E%3C/td%3E%3Ctd%20bgcolor%3D%22%23999999%22%3E'));
imageWindow.document.write('');
imageWindow.document.write('|
');
imageWindow.document.write(unescape('%3C/td%3E%3Ctd%20width%3D%22774%22%20bgcolor%3D%22%23FFFFFF%22%20align%3D%22right%22%3E%3Cimg%20src%3D%22/images/site_mast.gif%22%20width%3D%22177%22%20height%3D%2219%22%20border%3D%220%22%3E%3C/td%3E%3C/tr%3E%3Ctr%3E%3Ctd%20colspan%3D%224%22%20bgcolor%3D%22%23000000%22%3E%3Cimg%20src%3D%22http%3A//www.dallasnews.com/sharedcontent/dws/img/pixel.gif%22%20width%3D%221%22%20height%3D%221%22%3E%3C/td%3E%3C/tr%3E%3C/table%3E'));
imageWindow.document.write('');
imageWindow.document.write(' | ');
imageWindow.document.write('');
imageWindow.document.write('');
imageWindow.document.write('  ');
imageWindow.document.write(' ' + whichpic.alt + ' | ');
imageWindow.document.write('
' + whichpic.title + '
');
imageWindow.document.write(' |
\r');
imageWindow.document.write('');
imageWindow.document.write(unescape('%3Ctable%20width%3D100%25%20border%3D0%20cellspacing%3D6%20cellpadding%3D0%3E%3Ctr%3E%3Ctd%3E%3Cdiv%20align%3D%22center%22%3E%3Ca%20href%3D%22http%3A//ads.belointeractive.com/RealMedia/ads/click_nx.ads/www.dallasnews.com/photos/'));
imageWindow.document.write(dmnOAS_rns);
imageWindow.document.write(unescape('@Top%2CPosition1%2CPosition2%2CLeft%2CLeft1%2CBottom1%2CBottom2%21Top%3F%22%20TARGET%3D%22_top%22%3E%3CIMG%20SRC%3D%22http%3A//ads.belointeractive.com/RealMedia/ads/adstream_nx.ads/www.dallasnews.com/photos/'));
imageWindow.document.write(dmnOAS_rns);
imageWindow.document.write(unescape('@Top%2CPosition1%2CPosition2%2CLeft%2CLeft1%2CBottom1%2CBottom2%21Top%3F%22%20BORDER%3D0%3E%3C/A%3E%20%26nbsp%3B%3C/div%3E%3C/td%3E%3C/tr%3E%3C/table%3E'));
imageWindow.document.write(unescape('%3Cdiv%20align%3D%22center%22%20class%3D%22text%22%3E%26copy%3B2007%20Belo%20Corp.%3C/div%3E%3CSCRipT%20LANGUAGE%3D%22JavaScript%22%3ETacoda_AMS_DDC_js%3D1.0%3C/SCRipT%3E%3CSCRipT%20LANGUAGE%3D%22JavaScript1.1%22%3ETacoda_AMS_DDC_js%3D1.1%3C/SCRipT%3E%3CSCRipT%20LANGUAGE%3D%22JavaScript1.2%22%3ETacoda_AMS_DDC_js%3D1.2%3C/SCRipT%3E%3CSCRipT%20LANGUAGE%3D%22JavaScript1.3%22%3ETacoda_AMS_DDC_js%3D1.3%3C/SCRipT%3E%3CSCRipT%20LANGUAGE%3D%22JavaScript%22%3ETacoda_AMS_DDC%28%27%22http%3A//te.%22%20+%20domain_name%20+%20%22.com/blank.gif%22%27%2C%20Tacoda_AMS_DDC_js%29%3C/SCRipT%3E%3Cnoscript%3E%3Cimg%20src%3D%22http%3A//te.belointeractive.com/blank.gif%22%20width%3D1%20height%3D1%20border%3D0%3E%3C/noscript%3E%3C/body%3E%3C/html%3E'));
imageWindow.document.close();
}
// end of tdmn.photoXport code
//