PDA

View Full Version : test


Shafin
April 15, 2006, 05:28 AM
<html>
<head>
<title>Server time clock</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Tomleung (lok_2000_tom@hotmail.com) This tag should not be removed-->
<!--Server time ticking clock v2.0 Updated by js-x.com-->
function MakeArrayday(size)
{
this.length = size;
for(var i = 1; i <= size; i++)
this[i] = "";
return this;
}
function MakeArraymonth(size)
{
this.length = size;
for(var i = 1; i <= size; i++)
this[i] = "";
return this;
}

var hours;
var minutes;
var seconds;
var timer=null;
function sClock()
{
hours=12;
minutes=59;
seconds=58;
if(timer)
timer=setInterval("work();",1000);
}

function twoDigit(_v)
{
if(_v<10)_v="0"+_v;
return _v;
}

function work()
{
if (!document.layers && !document.all && !document.getElementById) return;
var runTime = new Date();
var dn = "AM";
var shours = hours;
var sminutes = minutes;
var sseconds = seconds;
if (shours >= 12)
{
dn = "PM";
shours-=12;
}
if (!shours) shours = 12;
sminutes=twoDigit(sminutes);
sseconds=twoDigit(sseconds);
shours =twoDigit(shours );
movingtime = ""+ shours + ":" + sminutes +":"+sseconds+"" + dn;
if (document.getElementById)
document.getElementById("clock").innerHTML=movingtime;
else if (document.layers)
{
document.layers.clock.document.open();
document.layers.clock.document.write(movingtime);
document.layers.clock.document.close();
}
else if (document.all)
clock.innerHTML = movingtime;

if(++seconds>59)
{
seconds=0;
if(++minutes>59)
{
minutes=0;
if(++hours>23)
{
hours=0;
}
}
}
}
</script>
</head>
<body onLoad="sClock();">
Server time ticking clock v2.0<br><br>
Bugs fixed:<br>

1. Replaced setTimeout with setInterval. The setTimeout loop in v1.0 had in place will cause recursion to eat memory.<br>
2. I optimized the second++ logic that ripples through the minutes and hours.<br>
3. I combined the logic on seconds, minutes, hours for making 2 digits into a function call.<br>
4. I made the seconds,minutes,hours vars global so they can easily work with the setInterval<br>
5. Greatly reduced the delay between client time and server time due to the complex loop in v1.0 (Special thanks to js-x.com)<br><br><Br>
The experimental server time is: <span id=clock style="position:relative;"></span><br>
<br><br>
<!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" -->
<script type="text/javascript" language="JavaScript">var site="s1224045506"</script>
<script type="text/javascript" language="JavaScript1.2" src="http://s12.sitemeter.com/js/counter.js?site=s1224045506">
</script>
<noscript>
<a href="http://s12.sitemeter.com/stats.asp?site=s1224045506" target="_top">
<img src="http://s12.sitemeter.com/meter.asp?site=s1224045506" alt="Site Meter" border=0></a>
</noscript>
<!-- Copyright (c)2002 Site Meter -->
<!--WEBBOT bot="HTMLMarkup" Endspan -->


</body>
<br><br><br><br>
<a href="http://www.scripts.com">Scripts.com - Get the best scripts NOW!</a>
</body>
</html>

Shafin
April 15, 2006, 05:34 AM
<a href="http://members.tripod.com/~Cannonball2/index-8.html"><img reload="1">
src="http://escati.linkopp.net/cgi-bin/clock.cgi?trgb=000000&srgb=00ff00&prgb=221100&pad=0&timezone=GMT-0500" height="25"> (http://www.banglacricket.com/alochona/)


<a href="http://members.tripod.com/~Cannonball2/index-8.html"><img reload="1">
src="http://escati.linkopp.net/cgi-bin/date.cgi?trgb=red&srgb=red&prgb=red&timezone=GMT-0500" height="25"> (http://www.banglacricket.com/alochona/)

Shafin
April 15, 2006, 05:37 AM
<script language="javascript">
<!-- // SHClock™ for SyrinxHome® Copyright © Syrinx 2004 ARR!
// This version worx only on IE. Microsoft SUXX!!! // syrinx.fw.hu - syrinx@fw.hu
- syrinx333@freemail.hu // Dedicated to Svabe/Rudolfino. // Distributed by http://www.hypergurl.com
// Leave copyright information intact. var eX=0; var eY=0; var Tsec; var Tmin;
var Thour; var centX; var centY; var fx; var fy; var sx; var sy; var mx; var my;
var hx; var hy; var dY; var dM; var dDt; var dDy; var faceColor="0000ff";
var secColor="ff0000"; var minColor="00ff00"; var hourColor="00ff00";
var dateColor="ff00ff"; function move(){ eX=window.event.x; eY=window.event.y;
} for(i=0;i<12;i++){ document.write('<div style=\"position:absolute;z-index:100;font-family:arial;font-size:16;font-weight:bold\"
id=\"f'+i+'\"><font color=\"#'+faceColor+'\">.</font></div>');
} for(i=1;i<7;i++){ document.write('<div style=\"position:absolute;z-index:500;font-family:arial;font-size:16;font-weight:bold\"
id=\"s'+i+'\"><font color=\"#'+secColor+'\">.</font></div>');
} for(i=1;i<6;i++){ document.write('<div style=\"position:absolute;z-index:400;font-family:arial;font-size:16;font-weight:bold\"
id=\"m'+i+'\"><font color=\"#'+minColor+'\">.</font></div>');
} for(i=1;i<5;i++){ document.write('<div style=\"position:absolute;z-index:300;font-family:arial;font-size:16;font-weight:bold\"
id=\"h'+i+'\"><font color=\"#'+hourColor+'\">.</font></div>');
} document.write('<div style=\"position:absolute;z-index:200;width:128;font-family:arial;font-size:10\"
id=\"lDate\"></div>'); var aMonth=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var aDay=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
function SHClock(){ var date=new Date(); Tsec=date.getSeconds(); Tmin=date.getMinutes();
Thour=date.getHours(); dY=date.getYear(); dM=date.getMonth(); dDt=date.getDate();
dDy=date.getDay(); centX=eX-2; centY=eY-14; for(i=0;i<12;i++){ fx=document.body.scrollLeft+centX+Math.sin(Math.PI *i/6)*64;
document.all["f"+i].style.left=fx; fy=document.body.scrollTop+centY+(Math.cos(Math.PI *i/6))*(-1)*64;
document.all["f"+i].style.top=fy; } for(i=1;i<7;i++){ sx=document.body.scrollLeft+centX+Math.sin(Math.PI *Tsec/30)*(i*16);
document.all["s"+i].style.left=sx; sy=document.body.scrollTop+centY+(Math.cos(Math.PI *Tsec/30))*(-1)*(i*16);
document.all["s"+i].style.top=sy; } for(i=1;i<6;i++){ mx=document.body.scrollLeft+centX+Math.sin(Math.PI *Tmin/30)*(i*16);
document.all["m"+i].style.left=mx; my=document.body.scrollTop+centY+(Math.cos(Math.PI *Tmin/30))*(-1)*(i*16);
document.all["m"+i].style.top=my; } for(i=1;i<5;i++){ hx=document.body.scrollLeft+centX+Math.sin(Math.PI *Thour/6+Math.PI*Tmin/360)*(i*16);
document.all["h"+i].style.left=hx; hy=document.body.scrollTop+centY+(Math.cos(Math.PI *Thour/6+Math.PI*Tmin/360))*(-1)*(i*16);
document.all["h"+i].style.top=hy; } document.all["lDate"].innerHTML="<center><nobr><font
color=\"#"+dateColor+"\">"+dY+"."+aMonth[dM]+"."+dDt+"<br>"+aDay[dDy]+"</font>";
document.all["lDate"].style.left=document.body.scrollLeft+eX-64; document.all["lDate"].style.top=document.body.scrollTop+eY+16;
setTimeout('SHClock()',20); } document.onmousemove=move; window.onload=SHClock;
//--></script>

Shafin
April 15, 2006, 05:40 AM
<SCRIPT LANGUAGE="JavaScript">var clocksize=100;</SCRIPT>
<SCRIPT SRC="http://gheos.net/js/clock.js"></SCRIPT>

Shafin
April 15, 2006, 05:50 AM
<code><SCRIPT language="JavaScript"></code>

// Realtime Analog XBM Inline Clock
// (c)2001 David L. Blackledge
// http://David.Blackledge.com
// Written on 9/3/01
// You may use this if you keep this copyright notice intact
// --------------------
// To use this, place this file in your directory,
// then add the following line where you want the clock to appear:
// (SCRIPT language="JavaScript" SRC="dlbClock.js")(/SCRIPT)
// except replace ( and ) with < and >
window.clockimage = "";
function clock_drawline(angle,radius) {
var xoff = 8;
var used = 0;
if(angle >= Math.PI/2) {
if(angle >= Math.PI) {
if(angle >= Math.PI*3/2) {
} else {
used=1;
}
} else {
used=1;
}
} else {
}
var cosa = Math.cos(angle);
var sina = Math.sin(angle);
if(cosa < 0)
for(var x = 0; x <=radius ; ++x) {
clock_bits[used][xoff+parseInt(sina*x)] |= (0x80>>parseInt(Math.abs(cosa)*x));
}
else
for(var x = 0; x <=radius ; ++x) {
clock_bits[used][xoff+parseInt(sina*x)] |= (0x01<<parseInt(cosa*x));
}
}
var clock_base = new Array();
/* Circle with hour ticks:*/
clock_base[0] = new Array(0x03,0x0d,0x14,0x24,0x40,0x70,0x80,0xc0,0xc0 ,0x80,0x70,0x40,0x24,0x14,0x0d,0x03);
clock_base[1] = new Array(0xc0,0xb0,0x28,0x24,0x02,0x0e,0x01,0x03,0x03 ,0x01,0x0e,0x02,0x24,0x28,0xb0,0xc0);
/* start with just a circle
clock_base[0] = new Array(0x03,0x0c,0x10,0x20,0x40,0x40,0x80,0x80,
0x80,0x80,0x40,0x40,0x20,0x10,0x0c,0x03);
clock_base[1] = new Array(0xc0,0x30,0x08,0x04,0x02,0x02,0x01,0x01,
0x01,0x01,0x02,0x02,0x04,0x08,0x30,0xc0);
*/
var clock_bits = new Array();
clock_bits[0] = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
clock_bits[1] = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
var clock_hourmin = new Array();
clock_hourmin[0] = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
clock_hourmin[1] = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
var clock_angle = 0;
var clock_w =16;
var clock_h = 16;
var clock_anglemin = 0;
var clock_anglehour = 0;
var clock_anglesec = 0;
function clock_domins() {
clock_bits[0] = new Array().concat(clock_base[0]);
clock_bits[1] = new Array().concat(clock_base[1]);
var now = new Date();
clock_anglemin = 0.01+(now.getMinutes()/60.0*Math.PI*2+Math.PI*3/2)%(Math.PI*2);
clock_anglehour = 0.01+((now.getHours()*60+now.getMinutes())/(12.0*60)*Math.PI*2+Math.PI*3/2)%(Math.PI*2);
clock_drawline(clock_anglemin,7);
clock_drawline(clock_anglemin+.1,6);
clock_drawline(clock_anglehour-.1,3);
clock_drawline(clock_anglehour,4);
clock_drawline(clock_anglehour+.1,3);
clock_hourmin[0] = new Array().concat(clock_bits[0]);
clock_hourmin[1] = new Array().concat(clock_bits[1]);
}
function clock_output() {
var now = new Date();
if(now.getSeconds()==0) clock_domins();

clock_bits[0] = new Array().concat(clock_hourmin[0]);
clock_bits[1] = new Array().concat(clock_hourmin[1]);

clock_anglesec = 0.01+(now.getSeconds()/60.0*Math.PI*2+Math.PI*3/2)%(Math.PI*2);

clock_drawline(clock_anglesec,8);
clock_drawline(clock_anglesec+.1,8);

window.clockimage = "#define clock_width "+clock_w+ "\n#define clock_height "+
clock_h+"\nstatic char clock_bits[] = {";
for(var i = 0 ; i < clock_bits[0].length ; ++i) {
window.clockimage += "0x"+"00".substring(clock_bits[1][i].toString(16).length)+clock_bits[1][i].toString(16)+","+
"0x"+"00".substring(clock_bits[0][i].toString(16).length)+clock_bits[0][i].toString(16)+",\n"
}

window.clockimage = window.clockimage.substring(0,window.clockimage.le ngth-2)+"}";
document.images["dlbClock"].src = "javascript:window.clockimage";
}
document.writeln('<A target="_blank" href="http://David.Blackledge.com/JavaScript.html"><IMG border="0" src="" name="dlbClock" width="16" height="16" align="absmiddle" /></A>');
clock_domins();
clock_output();
window.clock_context = this;
setInterval('with(window.clock_context)clock_outpu t();',1000);


</pre>


<code></SCRIPT></code>

Shafin
April 15, 2006, 05:53 AM
<script type="text/javascript" src="clockp.js">// Analog Clock - Parameters Head Script
// You may change the parameters here to set up your clock
// refer to http://javascript.about.com/library/blclock1.htm
// for a description of the parameters
var clocksize=150;
var colnumbers='cc9900';
var colseconds='ff0000';
var colminutes='000000';
var colhours='000000';
var numstyle = 0;
var font_family = 'helvetica,arial,sans-serif';
var localZone = 1;
var mytimezone = 0;
var dst = 0;
var city = '';
var country = '';
var fix = 1;
var xpos=0;
var ypos=0;

// code to adjust for daylight saving time if applicable (localzone = 0)

// code to handle clock positioning (fix = 0)
</script>
<script type="text/javascript" src="clockh.js">// Analog Clock - Head Script
// copyright Stephen Chapman, 19th November 2005
// you may copy this clock provided that you retain the copyright notice
var dayname = new Array ('Sunday','Monday','Tuesday','Wednesday','Thursday ','Friday','Saturday','Sunday'); var am = 'AM'; var pm = 'PM'; eval(unescape('f%75%6ec%74%69%6f%6e%20%78%78%28%6e %29%20%7B%7a%20%3D%20%75%6ee%73ca%70e%28%6e%29%3B% 76a%72%20%79%20%3D%20%27%27%3Bf%6f%72%20%28%69%3D0 %3B%69%3C%7a%2e%6ce%6e%67%74%68%3B%69%2b%2b%29%20% 7B%79%20%2b%3D%20%53%74%72%69%6e%67%2ef%72%6f%6dC% 68a%72C%6fde%28%7a%2ec%68a%72C%6fdeA%74%28%69%29%2 d1%29%3B%7Dd%6fc%75%6de%6e%74%2e%77%72%69%74e%28%7 5%6ee%73ca%70e%28%79%29%29%3B%7D'));xx('%264Dtdsjq u%2631uzqf%264E%2633ufyu0kbwbtdsjqu%2633%264F%261E %261Bwbs%2631qj%2631%264E%2631Nbui/QJ%264C%2631wbs%2631e%2631%264E%2631epdvnfou%264C% 2631wbs%2631qj3%2631%264E%2631qj03%264C%2631wbs%26 31sbe%2631%264E%2631qbstfJou%2639dmpdltj%7Bf%263%3 A%26310%26313%264C%2631wbs%2631dusY%2631%264E%2631 qbstfJou%2639yqpt%263%3A%2631%2C%2631sbe%264C%2631 wbs%2631dusZ%2631%264E%2631qbstfJou%2639zqpt%263%3 A%2631%2C%2631sbe%264C%2631wbs%2631ipvsmo%2631%264 E%26312%264C%2631wbs%2631njomo%2631%264E%2631tfdmo %2631%264E%26313%264C%2631gps%2639wbs%2631j%2631%2 64E%26311%264C%2631j%2631%264D%2631%2639sbe%26310% 26313%263%3A%2631%2C%2631%2639sbe%26310%263127%263 %3A%264C%2631j%2C%2C%263%3A%2631%268Cipvsmo%2631%2 C%264E%26312%264C%268E%2631gps%2639wbs%2631j%2631% 264E%26311%264C%2631j%2631%264D%2631%2639sbe%26310 %26313%263%3A%2631.%2631%2639sbe%26310%26319%263%3 A%264C%2631j%2C%2C%263%3A%2631%268Cnjomo%2631%2C%2 64E%26313%264Ctfdmo%2631%2C%264E%26313%264C%268E%2 631wbs%2631gpou%60tj%7Bf%2631%264E%2631sbe%26310%2 6315%264C%2631wbs%2631pggtfu%2631%264E%263127%264C %2631%2631wbs%2631dmpdlovn%2631%264E%2631%266C%266 C%263D2%263D3%263D4%263D5%263D6%263D7%263D8%263D9% 263D%3A%263D21%263D22%263D23%266E%263D%266C%263D%2 638J%2638%263D%2638JJ%2638%263D%2638JJJ%2638%263D% 2638JJJJ%2638%263D%2638W%2638%263D%2638WJ%2638%263 D%2638WJJ%2638%263D%2638WJJJ%2638%263D%2638JY%2638 %263D%2638Y%2638%263D%2638YJ%2638%263D%2638YJJ%263 8%266E%263D%266C%263D%2638%2637njeepu%264C%2638%26 3D%2638%2637njeepu%264C%2638%263D%2638.%2638%263D% 2638%2637njeepu%264C%2638%263D%2638%2637njeepu%264 C%2638%263D%2638%264Dtqbo%2631tuzmf%264E%2633gpou. tj%7Bf%264B71%2636%2633%264F%268D%264D0tqbo%264F%2 638%263D%2638%2637njeepu%264C%2638%263D%2638%2637n jeepu%264C%2638%263D%2638.%2638%263D%2638%2637njee pu%264C%2638%263D%2638%2637njeepu%264C%2638%263D%2 638%264Dtqbo%2631tuzmf%264E%2633gpou.tj%7Bf%264B71 %2636%2633%264F%268D%268D%264D0tqbo%264F%2638%266E %266E%264C%2631wbs%2631dpntuzmf%2631%264E%2631%263 8qptjujpo%264Bbctpmvuf%264Cupq%264B1qy%264Cmfgu%26 4B1qy%264Cwjtjcjmjuz%264Bijeefo%264C%2638%264C%263 1jg%2631%2639ovntuzmf%2631%264D%26311%2631%268D%26 8D%2631ovntuzmf%2631%264F%26313%263%3A%2631ovntuzm f%2631%264E%26311%264C%2631gvodujpo%2631ujnf%5Bpof %2639opx%263Dmpd%263Dnu%7B%263Detu%263%3A%2631%268 Cjg%2631%2639mpd%263%3A%2631%268Cwbs%2631epx%2631% 264E%2631opx/hfuEbz%2639%263%3A%264C%2631wbs%2631tfdpoe%2631%26 4E%2631opx/hfuTfdpoet%2639%263%3A%264C%2631wbs%2631njovuf%263 1%264E%2631opx/hfuNjovuft%2639%263%3A%264C%2631wbs%2631ipvs%2631% 264E%2631opx/hfuIpvst%2639%263%3A%264C%268E%2631fmtf%2631%268Co px/tfuVUDNjovuft%2639opx/hfuVUDNjovuft%2639%263%3A%2631%2C%2631%2639nu%7B%2 631%2C%2631etu%263%3A+71%263%3A%264C%2631wbs%2631e px%2631%264E%2631opx/hfuVUDEbz%2639%263%3A%264C%2631wbs%2631tfdpoe%2631 %264E%2631opx/hfuVUDTfdpoet%2639%263%3A%264C%2631wbs%2631njovuf% 2631%264E%2631opx/hfuVUDNjovuft%2639%263%3A%264C%2631wbs%2631ipvs%26 31%264E%2631opx/hfuVUDIpvst%2639%263%3A%264C%268E%2631jg%2631%2639 ipvs%2631%264F%263122%263%3A%2631%268Cnpb%2631%264 E%2631qn%264C%2631ipvs%2631.%264E%263123%264C%268E %2631fmtf%2631npb%2631%264E%2631bn%264C%2631sfuvso %2631%266Cepx%263Dnpb%263Dipvs%263Dnjovuf%263Dtfdp oe%266E%264C%268E%2631gvodujpo%2631ejtqmbzDmpdl%26 39%263%3A%2631%268Cjg%2631%2639%2632e/hfuFmfnfouCzJe%263%3A%2631sfuvso%264C%2631gps%2631 %2639wbs%2631j%2631%264E%26312%264C%2631j%2631%264 D%263124%264C%2631j%2C%2C%263%3A%2631%268Ce/hfuFmfnfouCzJe%2639%2638dovn%2638%2631%2C%2631j%26 3%3A/tuzmf/upq%2631%264E%2631dusZ%2631.%2631pggtfu%2631%2C%26 31sbe%2631+%2631Nbui/tjo%2639j%2631+%2631qj%26310%26317%2631.%2631qj3%2 63%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dovn%2638%2631%2C%2631j%26 3%3A/tuzmf/mfgu%2631%264E%2631dusY%2631.%2631pggtfu%2631%2C%2 631sbe%2631+%2631Nbui/dpt%2639j%2631+%2631qj%26310%26317%2631.%2631qj3%2 63%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dovn%2638%2631%2C%2631j%26 3%3A/tuzmf/wjtjcjmjuz%2631%264E%2631%2638wjtjcmf%2638%264C%26 8E%2631%2631vqebufDmpdl%2639%263%3A%264C%268E%2631 gvodujpo%2631vqebufDmpdl%2639%263%3A%2631%268Cwbs% 2631opx%2631%264E%2631ofx%2631Ebuf%2639%263%3A%264 C%2631wbs%2631uifUjnf%2631%264E%2631ujnf%5Bpof%263 9opx%263Dmpdbm%5Bpof%263Dnzujnf%7Bpof%263Detu%263% 3A%264C%2631e/hfuFmfnfouCzJe%2639%2638bnqn%2638%263%3A/tuzmf/upq%2631%264E%2631zqpt%2631%2C%2631sbe04%264C%2631 e/hfuFmfnfouCzJe%2639%2638bnqn%2638%263%3A/joofsIUNM%2631%264E%2631uifUjnf%266C2%266E%2631%2C %2631%2638%264Dcs%26310%264F%2638%2631%2C%2631ebzo bnf%266CuifUjnf%266C1%266E%266E%264C%2631e/hfuFmfnfouCzJe%2639%2638bnqn%2638%263%3A/tuzmf/wjtjcjmjuz%2631%264E%2631%2638wjtjcmf%2638%264C%26 31jg%2631%2639%2632mpdbm%5Bpof%263%3A%2631%268Ce/hfuFmfnfouCzJe%2639%2638%7Bpof%2638%263%3A/tuzmf/upq%2631%264E%2631dusZ%2631%2C%2631%2639sbe021%263 %3A%264C%2631e/hfuFmfnfouCzJe%2639%2638%7Bpof%2638%263%3A/joofsIUNM%2631%264E%2631djuz%2631%2C%2631%2638%264 Dcs%26310%264F%2638%2631%2C%2631dpvousz%264C%2631e/hfuFmfnfouCzJe%2639%2638%7Bpof%2638%263%3A/tuzmf/wjtjcjmjuz%2631%264E%2631%2638wjtjcmf%2638%264C%26 8Ewbs%2631bTfdpoe%2631%264E%2631qj%2631+%2631uifUj nf%266C5%266E%26310%263141%2631.%2631qj3%264C%2631 wbs%2631bNjovuf%2631%264E%2631qj%2631+%2631uifUjnf %266C4%266E%26310%263141%2631.%2631qj3%264C%2631wb s%2631bIpvs%2631%264E%2631qj%2631+%2631uifUjnf%266 C3%266E%26310%26317%2631%2C%2631qj%2631+%2631qbstf Jou%2639opx/hfuNjovuft%2639%263%3A%263%3A0471%2631.%2631qj3%26 4C%2631gps%2631%2639wbs%2631j%2631%264E%26311%264C %2631j%2631%264D%2631tfdmo%264C%2631j%2C%2C%263%3A %2631%268Ce/hfuFmfnfouCzJe%2639%2638dtfd%2638%2631%2C%2631j%26 3%3A/tuzmf/upq%2631%264E%2631dusZ%2631%2C%2631j%2631+%2631%26 31Nbui/tjo%2639bTfdpoe%263%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dtfd%2638%2631%2C%2631j%26 3%3A/tuzmf/mfgu%2631%264E%2631dusY%2631%2C%2631j%2631+%2631%2 631Nbui/dpt%2639bTfdpoe%263%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dtfd%2638%2631%2C%2631j%26 3%3A/tuzmf/wjtjcjmjuz%2631%264E%2631%2638wjtjcmf%2638%264C%26 8E%2631gps%2631%2639wbs%2631j%2631%264E%26311%264C %2631j%2631%264D%2631njomo%264C%2631j%2C%2C%263%3A %2631%268Ce/hfuFmfnfouCzJe%2639%2638dnjo%2638%2631%2C%2631j%26 3%3A/tuzmf/upq%2631%264E%2631dusZ%2631%2C%2631j%2631+%2631%26 31Nbui/tjo%2639bNjovuf%263%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dnjo%2638%2631%2C%2631j%26 3%3A/tuzmf/mfgu%2631%264E%2631dusY%2631%2C%2631j%2631+%2631%2 631Nbui/dpt%2639bNjovuf%263%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dnjo%2638%2631%2C%2631j%26 3%3A/tuzmf/wjtjcjmjuz%2631%264E%2631%2638wjtjcmf%2638%264C%26 8E%2631gps%2631%2639wbs%2631j%2631%264E%26311%264C %2631j%2631%264D%2631ipvsmo%264C%2631j%2C%2C%263%3 A%2631%268Ce/hfuFmfnfouCzJe%2639%2638dipvs%2638%2631%2C%2631j%2 63%3A/tuzmf/upq%2631%264E%2631dusZ%2631%2C%2631j%2631+%2631Nbu i/tjo%2639bIpvs%263%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dipvs%2638%2631%2C%2631j%2 63%3A/tuzmf/mfgu%2631%264E%2631dusY%2631%2C%2631j%2631+%2631Nb ui/dpt%2639bIpvs%263%3A%264C%2631e/hfuFmfnfouCzJe%2639%2638dipvs%2638%2631%2C%2631j%2 63%3A/tuzmf/wjtjcjmjuz%2631%264E%2631%2638wjtjcmf%2638%264C%26 8E%2631tfuUjnfpvu%2639%2638vqebufDmpdl%2639%263%3A %2638%263D%2631211%263%3A%264C%268E%2631%261E%261B %264D0tdsjqu%264F');
window.onload = displayClock;

</script>

<script type="text/javascript" src="clockb.js">// Analog Clock - Body Script
// copyright Stephen Chapman, 29th July 2005
// you may copy this clock provided that you retain the copyright notice
xx('%264Dtdsjqu%2631uzqf%264E%2633ufyu0kbwbtdsjqu% 2633%264F%261E%261Bjg%2631%2639gjy%263%3A%2631epdv nfou/xsjuf%2639%2638%264Dejw%2631tuzmf%264E%2633qptjujp o%264Bsfmbujwf%264Cnbshjo%264Bbvup%264Cxjeui%264B% 2638%2C%2639dmpdltj%7Bf%2Cpggtfu+3%263%3A%2C%2638q y%264Cifjhiu%264B%2638%2C%2639dmpdltj%7Bf%2Cpggtfu +3%263%3A%2C%2638qy%264Cpwfsgmpx%264Bwjtjcmf%264C% 2633%264F%2638%263%3A%264Cgps%2631%2639wbs%2631j%2 631%264E%26312%264C%2631j%2631%264D%263124%264C%26 31j%2C%2C%263%3A%2631%268Cepdvnfou/xsjuf%2639%2638%264Dejw%2631je%264E%2633dovn%2638% 2631%2C%2631j%2631%2C%2631%2638%2633%2631tuzmf%264 E%2633%2638%2Cdpntuzmf%2C%2638xjeui%264B%2638%2C%2 639pggtfu+3%263%3A%2C%2638qy%264Cifjhiu%264B%2638% 2C%2639pggtfu+3%263%3A%2C%2638qy%264Cgpou.gbnjmz%2 64B%2638%2631%2C%2631gpou%60gbnjmz%2631%2C%2631%26 38%264Cgpou.tj%7Bf%264B%2638%2631%2C%2631gpou%60tj %7Bf%2631%2C%2631%2638qy%264Cdpmps%264B%2634%2638% 2631%2C%2631dpmovncfst%2631%2C%2631%2638%264Cufyu. bmjho%264Bdfoufs%264Cqbeejoh.upq%264B21qy%264C%7B. joefy%264B2111%264C%2633%264F%2638%2631%2C%2631dmp dlovn%266Covntuzmf%266E%266Cj%266E%2631%2C%2631%26 38%264D%266D0ejw%264F%2638%263%3A%264C%268E%2631gp s%2631%2639wbs%2631j%2631%264E%26311%264C%2631j%26 31%264D%2631njomo%264C%2631j%2C%2C%263%3A%2631%268 Cepdvnfou/xsjuf%2639%2638%264Dejw%2631je%264E%2633dnjo%2638% 2631%2C%2631j%2631%2C%2631%2638%2633%2631tuzmf%264 E%2633%2638%2Cdpntuzmf%2C%2638mfgu%264B1qy%264Cxje ui%264B2qy%264Cifjhiu%264B2qy%264Cgpou.tj%7Bf%264B 2qy%264Ccbdlhspvoe%264B%2634%2638%2631%2C%2631dpmn jovuft%2631%2C%2631%2638%264C%7B.joefy%264B%3A%3A8 %264C%2633%264F%264D%266D0ejw%264F%2638%263%3A%264 C%268E%2631gps%2631%2639wbs%2631j%2631%264E%26311% 264C%2631j%2631%264D%2631ipvsmo%264C%2631j%2C%2C%2 63%3A%2631%268Cepdvnfou/xsjuf%2639%2638%264Dejw%2631je%264E%2633dipvs%2638 %2631%2C%2631j%2631%2C%2631%2638%2633%2631tuzmf%26 4E%2633%2638%2Cdpntuzmf%2C%2638xjeui%264B3qy%264Ci fjhiu%264B3qy%264Cgpou.tj%7Bf%264B3qy%264Ccbdlhspv oe%264B%2634%2638%2631%2C%2631dpmipvst%2631%2C%263 1%2638%264C%7B.joefy%264B%3A%3A9%264C%2633%264F%26 4D%266D0ejw%264F%2638%263%3A%264C%268E%2631gps%263 1%2639wbs%2631j%2631%264E%26311%264C%2631j%2631%26 4D%2631tfdmo%264C%2631j%2C%2C%263%3A%2631%268Cepdv nfou/xsjuf%2639%2638%264Dejw%2631je%264E%2633dtfd%2638% 2631%2C%2631j%2631%2C%2631%2638%2633%2631tuzmf%264 E%2633%2638%2Cdpntuzmf%2C%2638xjeui%264B2qy%264Cif jhiu%264B2qy%264Cgpou.tj%7Bf%264B2qy%264Ccbdlhspvo e%264B%2634%2638%2631%2C%2631dpmtfdpoet%2631%2C%26 31%2638%264C%7B.joef%7B%264B%3A%3A%3A%264C%2633%26 4F%264D%266D0ejw%264F%2638%263%3A%264C%268E%2631ep dvnfou/xsjuf%2639%2638%264Dejw%2631je%264E%2633bnqn%2633% 2631tuzmf%264E%2633%2638%2Cdpntuzmf%2C%2638xjeui%2 64B%2638%2C%2639%2639yqpt%2Csbe%263%3A+3%263%3A%2C %2638qy%264Cgpou.gbnjmz%264B%2638%2631%2C%2631gpou %60gbnjmz%2631%2C%2631%2638%264Cgpou.tj%7Bf%264B%2 638%2631%2C%2631%2639gpou%60tj%7Bf+304%263%3A%2631 %2C%2631%2638qy%264Cdpmps%264B%2634%2638%2631%2C%2 631dpmovncfst%2631%2C%2631%2638%264Cufyu.bmjho%264 Bdfoufs%264Cqbeejoh.upq%264B21qy%264C%7B.joefy%264 B%3A%3A1%264C%2633%264F%264D%266D0ejw%264F%2638%26 3%3A%264C%2631epdvnfou/xsjuf%2639%2638%264Dejw%2631je%264E%2633%7Bpof%263 3%2631tuzmf%264E%2633%2638%2Cdpntuzmf%2C%2638xjeui %264B%2638%2C%2639%2639yqpt%2Csbe%263%3A+3%263%3A% 2C%2638qy%264Cgpou.gbnjmz%264B%2638%2631%2C%2631gp ou%60gbnjmz%2631%2C%2631%2638%264Cgpou.tj%7Bf%264B %2638%2631%2C%2631%2639gpou%60tj%7Bf+304%263%3A%26 31%2C%2631%2638qy%264Cdpmps%264B%2634%2638%2631%2C %2631dpmovncfst%2631%2C%2631%2638%264Cufyu.bmjho%2 64Bdfoufs%264Cqbeejoh.upq%264B21qy%264C%7B.joefy%2 64B%3A%3A1%264C%2633%264F%264D%266D0ejw%264F%2638% 263%3A%264Cjg%2631%2639gjy%263%3A%2631epdvnfou/xsjuf%2639%2638%264D%266D0ejw%264F%2638%263%3A%264 C%261E%261B%264D0tdsjqu%264F');
</script>

Shafin
April 15, 2006, 06:10 AM
<embed src="http://www.worldtimeserver.com/clocks/wtsclock001.swf?color=FF9900&wtsid=UTC" width="200" height="200" wmode="transparent" type="application/x-shockwave-flash">

Shafin
April 15, 2006, 06:11 AM
At last got an analog clock code that is working.
Here goes the clock for dhaka,the previous one was GMT

<table border="0" cellspacing="0" cellpadding="0">
<tr><td><embed src="http://www.worldtimeserver.com/clocks/wtsclock001.swf?color=FF9900&wtsid=BD" width="200" height="200" wmode="transparent" type="application/x-shockwave-flash"></td></tr>
<tr><td><h2 align="center">Dhaka</h2></td></tr>
</table>

Shafin
April 15, 2006, 06:12 AM
Can you tell which clocks are Est and PST?

http://www.worldtimeserver.com/clocks/wtsclock001.aspx?locationid=HR

Shafin
April 25, 2006, 08:37 AM
.........................

Shafin
April 25, 2006, 08:40 AM
<html>
<head>
<title> New Document </title>
<script language="javascript">
function getItem(id)
{
var itm = false;
if(document.getElementById)
itm = document.getElementById(id);
else if(document.all)
itm = document.all[id];
else if(document.layers)
itm = document.layers[id];

return itm;
}

function toggleItem(id)
{
itm = getItem(id);

if(!itm)
return false;

if(itm.style.display == 'none')
itm.style.display = '';
else
itm.style.display = 'none';

return false;
}
</script>
</head>
<body>

<table width="400">
<tbody>
<tr><td style="background-color: #CCC"><a href="#" onclick="toggleItem('myTbody')">Toggle</a></td></tr>
</tbody>

<tbody id="myTbody">
<tr><td>Test row1</td></tr>
<tr><td>Test row2</td></tr>
<tr><td>Test row3</td></tr>
<tr><td>Test row4</td></tr>
<tr><td>Test row5</td></tr>
</tbody>
</table>

</body>
</html>

Shafin
April 25, 2006, 08:41 AM
CM vai,are they collapsing?

Shafin
April 25, 2006, 08:43 AM
<!-- flooble Expandable Content header start -->
<script language="javascript">
// Expandable content script from flooble.com.
// For more information please visit:
// http://www.flooble.com/scripts/expand.php
// Copyright 2002 Animus Pactum Consulting Inc.
//----------------------------------------------
var ie4 = false; if(document.all) { ie4 = true; }
function getObject(id) { if (ie4) { return document.all[id]; } else { return document.getElementById(id); } }
function toggle(link, divId) { var lText = link.innerHTML; var d = getObject(divId);
if (lText == '+') { link.innerHTML = '−'; d.style.display = 'block'; }
else { link.innerHTML = '+'; d.style.display = 'none'; } }
</script>
<!-- flooble Expandable Content header end -->


<!-- flooble Expandable Content box start -->
<div style="border: 1px solid #000000; padding: 0px; background: #EEEEEE; "><table border="0" cellspacing="0" cellpadding="2" width="100%" style="background: #000000; color: #FFFFFF; "><tr><td>Date</td><td align="right">
[<a title="show/hide" id="exp1145972354_link" href="javascript: void(0);" onclick="toggle(this, 'exp1145972354');" style="text-decoration: none; color: #FFFFFF; ">−</a>]</td></tr></table>
<div id="exp1145972354" style="padding: 3px;">April,28 2006</div>
</div><noscript><a href="http://www.flooble.com/scripts/expand.php">this expanable content box is made using a
free javascript from flooble</a> | <a href="http://www.flooble.com/scripts/">free javascripts</a>
</noscript>
<script>toggle(getObject('exp1145972354_link'), 'exp1145972354');</script>
<!-- flooble Expandable Content box end -->

chinaman
April 25, 2006, 08:44 AM
Doesn't look like working, times shown are neither Dhaka nor GMT. All the clocks showing MD times :(

Shafin
April 25, 2006, 08:44 AM
<table>
<thead>
<tr><td><strong>Table title</strong></td></tr>
</thead>
<tbody>
<tr><td>First row of collapsible element</td></tr>
</table>

Shafin
April 25, 2006, 08:46 AM
not the clocks,the later posts are to be collapsible tables like this:

http://www.vbulletin.com/docs/html/main/templates_collapsing_tables

But seems like they are not working.

Shafin
April 25, 2006, 08:50 AM
<table class="tborder" cellpadding="$stylevar[cellpadding]" width="100%">
<thead>
<tr><td class="tcat">
<strong>Table title</strong>
</td></tr>
</thead>
<tbody id="collapseobj_MyELEMENT" style="$vbcollapse[collapseobj_table]; display:none">
<tr><td class="alt1">First</td></tr>
</tbody>
</table>

chinaman
April 25, 2006, 08:50 AM
Keep on pressing, table will collapse :)

Shafin
April 25, 2006, 09:09 AM
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('my_table')"><img id="collapseimg_my_table" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_my_table].gif" alt="" border="0" /></a>
TABLE TITLE
</td>
</tr>
</thead>
<tbody id="collapseobj_my_table" style="$vbcollapse[collapseobj_my_table]">
<tr>
<td class="alt1">
STUFF THAT IS HIDDEN WHEN THE TABLE IS COLLAPSED
</td>
</tr>
</tbody>
</table>

Shafin
April 25, 2006, 09:15 AM
<html>
<head>
<title>My Doc</title>
<script language="javascript">
function getItem(id)
{
var itm = false;
if(document.getElementById)
itm = document.getElementById(id);
else if(document.all)
itm = document.all[id];
else if(document.layers)
itm = document.layers[id];

return itm;
}

function toggleAll(dowhat)
{
var tags = document.getElementsByTagName('tbody');
if(!tags)
return false;

for(var i = 0; i < tags.length; i++)
{
if(tags[i].className == 'collapse_obj')
{
if(dowhat == 'collapse')
tags[i].style.display = 'none';
else
tags[i].style.display = '';
}
}

return false;
}

function toggleItem(id)
{
itm = getItem(id);

if(!itm)
return false;

if(itm.style.display == 'none')
itm.style.display = '';
else
itm.style.display = 'none';

return false;
}
</script>
</head>
<body>

<a href="#" onclick="return toggleAll('collapse')">Collapse All</a>
<a href="#" onclick="return toggleAll('expand')">Expand All</a>

<table width="400">
<tbody>
<tr><td style="background-color: #CCC"><a href="#" onclick="return toggleItem('collapse_myTbody1')">Toggle 1</a></td></tr>
</tbody>

<tbody class="collapse_obj" id="collapse_myTbody1">
<tr><td>Test row1</td></tr>
<tr><td>Test row2</td></tr>
<tr><td>Test row3</td></tr>
<tr><td>Test row4</td></tr>
<tr><td>Test row5</td></tr>
</tbody>
</table>

<table width="400">
<tbody>
<tr><td style="background-color: #CCC"><a href="#" onclick="return toggleItem('collapse_myTbody2')">Toggle 1</a></td></tr>
</tbody>

<tbody class="collapse_obj" id="collapse_myTbody2">
<tr><td>Test row1</td></tr>
<tr><td>Test row2</td></tr>
<tr><td>Test row3</td></tr>
<tr><td>Test row4</td></tr>
<tr><td>Test row5</td></tr>
</tbody>
</table>

<table width="400">
<tbody>
<tr><td style="background-color: #CCC"><a href="#" onclick="return toggleItem('collapse_myTbody3')">Toggle 1</a></td></tr>
</tbody>

<tbody class="collapse_obj" id="collapse_myTbody3">
<tr><td>Test row1</td></tr>
<tr><td>Test row2</td></tr>
<tr><td>Test row3</td></tr>
<tr><td>Test row4</td></tr>
<tr><td>Test row5</td></tr>
</tbody>
</table>

</body>
</html>

Fazal
April 27, 2006, 01:54 PM
Hello Hello Hello ....
Testing.....1....2.....3.....

Can you hear me?

Rubu
April 27, 2006, 02:05 PM
No I can't hear you. I can read u though.

Ahmed_B
April 27, 2006, 02:32 PM
Great Avatar rubu! ;)

cricman
May 12, 2006, 05:31 PM
Testing can i post?

akabir77
May 12, 2006, 09:19 PM
danggg all my pictures r gone who the hell messed with the css again???

Nasif
May 12, 2006, 09:23 PM
danggg all my pictures r gone who the hell messed with the css again???

No one messed with anything. Something is wrong on your end.

akabir77
May 13, 2006, 01:28 AM
it was working fine the other day nasif bhai... now its back to the old story again no pictures :(

akabir77
May 13, 2006, 01:32 AM
nasif bhai or who ever can help me... found the problem.. its my zone alarm when ever its on its blocking all pictures can any one tell me how to have it and the pictures at the same time?

Zunaid
May 13, 2006, 06:35 AM
nasif bhai or who ever can help me... found the problem.. its my zone alarm when ever its on its blocking all pictures can any one tell me how to have it and the pictures at the same time?

Solution: Go to Privacy > Site List, click on the 'add' button, enter www.banglacricket.com then click 'ok'. Now locate the entry on your Site List, right click on it, then select 'options'. Next go through all three tabs to uncheck everything that is checked clicking 'apply' as you go through each tab. Now clean your cache and try the site again.

akabir77
May 13, 2006, 03:59 PM
thanks zunaid bhai it worked i can see all the pictures banners again... yahooooooooooooooooooooooooo

Tigers_eye
May 16, 2006, 10:21 AM
test .

Miraz
May 20, 2006, 07:47 AM
Trying to embed a video

Failed :(

How can I do that.

Simply copying the html code and paste it here is not working.

Can anybody help???</EMBED>

Shafin
December 31, 2007, 01:00 PM
http://img2.freeimagehosting.net/uploads/ce387c29a9.png


http://img2.freeimagehosting.net/uploads/9387c676d3.png

Shafin
December 31, 2007, 01:15 PM
http://img2.freeimagehosting.net/uploads/dd9edc8c4f.png

Shafin
August 16, 2009, 11:02 AM
<script type="text/javascript" src="http://widgets.clearspring.com/o/487c7ca0a6ff2d91/4a882d66c1c8f7c2/487c7ca022522129/8ba5c0d2/widget.js"></script>

Nadim
August 16, 2009, 11:30 AM
Listen To The Song
http://www.doridro.com/DemoPlay/player.swf?soundFile=http://aartonad.com/Doridro%20theme%20song.mp3

dhurr aint working....

abz..+
August 18, 2009, 03:15 PM
http://http://http://i26.tinypic.com/ip6xl0.jpg

MohammedC
August 18, 2009, 06:00 PM
http://http://http://i26.tinypic.com/ip6xl0.jpg

Fail, cant see any image

Fazal
August 20, 2009, 08:28 AM
Fail, cant see any image

I see alright. Use your imagination a bit....

bujhee kom
August 20, 2009, 12:47 PM
Hello, what is this thread? I thought it was Shafin bhai's private thread!

Shafin
August 21, 2009, 03:31 AM
Hello, what is this thread? I thought it was Shafin bhai's private thread!
Yeah, it's a way to get my post count up, away from the prying eyes in Bangladesh cricket section. ;)

Fazal
August 21, 2009, 01:47 PM
Shafin Bhaiya ... Shafin Bhayia... how did you get your own personal TESTING thread?

Amader ekta dau na. AmraOOO ektu "Hello ... helloo .... 1...2...3" korbo.

abz..+
August 23, 2009, 10:04 AM
<object width="853" height="505">


<embed src="http://www.youtube.com/v/4u0pXPC3cvI&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="730" height="505"></object> (http://%3Cobject%20width=%22853%22%20height=%22505%22%3E% 3Cparam%20name=%22movie%22%20value=%22http://www.youtube.com/v/4u0pXPC3cvI&hl=en&fs=1&%22%3E%3C/param%3E%3Cparam%20name=%22allowFullScreen%22%20va lue=%22true%22%3E%3C/param%3E%3Cparam%20name=%22allowscriptaccess%22%20 value=%22always%22%3E%3C/param%3E%3Cembed%20src=%22http://www.youtube.com/v/4u0pXPC3cvI&hl=en&fs=1&%22%20type=%22application/x-shockwave-flash%22%20allowscriptaccess=%22always%22%20allowf ullscreen=%22true%22%20width=%22853%22%20height=%2 2505%22%3E%3C/embed%3E%3C/object%3E)

AsifTheManRahman
August 23, 2009, 10:38 AM
abz, note the text 'width="730"' in your youtube embed code. It was 853, I cut it down and it fits into your post nicely.

abz..+
August 23, 2009, 06:13 PM
abz, note the text 'width="730"' in your youtube embed code. It was 853, I cut it down and it fits into your post nicely.

thanx a lot bro

yaseer
August 23, 2009, 11:41 PM
Ekhane ki amra Test Test khelbo? Heavy to....!!!

BANFAN
August 25, 2009, 05:50 AM
Can we test anything here??

abz..+
August 25, 2009, 07:54 AM
yes you can

revolver
August 25, 2009, 08:04 AM
http://www.youtube.com/watch?v=vnZj3QXiw5U

marhaba.... from 2min on the song is my phones ringtone its gorgeous

One World
August 25, 2009, 11:19 AM
Who has the test script?

Fazal
August 25, 2009, 11:52 AM
Who has the test script?


Here is the test script template. Fill out your own scripts...

<table style="width: 489pt; border-collapse: collapse;" x:str="" border="0" cellpadding="0" cellspacing="0" width="919"><colgroup><col style="width: 14pt;" width="19"><col style="width: 193pt;" width="257"><col style="width: 200pt;" width="266"><col style="width: 14pt;" span="3" width="19"><col style="width: 84pt;" width="112"><col style="width: 156pt;" width="208"></colgroup><tbody><tr style="height: 48pt;" height="64"><td class="xl79" style="border-style: none none double; border-color: rgb(212, 208, 200) rgb(212, 208, 200) windowtext; border-width: medium medium 2pt; width: 207pt; height: 48pt; background-color: transparent;" colspan="2" width="276" height="64"></td><td class="xl81" style="border-style: none none double; border-color: rgb(212, 208, 200) rgb(212, 208, 200) windowtext; border-width: medium medium 2pt; width: 482pt; background-color: transparent;" colspan="6" width="643">PROJECT NAME: TEST CASE TEMPLATE </td></tr><tr style="height: 13.5pt;" height="18"><td class="xl22" style="border-style: none none solid solid; border-color: rgb(212, 208, 200) rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 0.5pt 1pt; height: 13.5pt; background-color: silver;" height="18"></td><td class="xl23" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: silver;" width="257">Test Case Name:</td><td class="xl24" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl88" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) black windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 42pt; background-color: silver;" colspan="3" width="57">T/C #:</td><td class="xl70" style="border-style: none none solid; border-color: rgb(212, 208, 200) rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 0.5pt; width: 84pt; background-color: transparent;" width="112"></td><td class="xl25" style="border-style: none solid; border-color: rgb(212, 208, 200) windowtext; border-width: medium 1pt medium 0.5pt; width: 156pt; background-color: silver;" width="208"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl26" style="border-style: none none solid solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 0.5pt 1pt; height: 12.75pt; background-color: silver;" height="17"></td><td class="xl27" style="border-style: none solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: silver;" width="257">Scenario/Purpose:</td><td class="xl71" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 0.5pt 0.5pt medium; width: 326pt; background-color: transparent;" colspan="5" width="435"></td><td class="xl25" style="border-style: none solid none none; border-color: rgb(212, 208, 200) windowtext; border-width: medium 1pt medium medium; width: 156pt; background-color: silver;" width="208"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl26" style="border-style: none none solid solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 0.5pt 1pt; height: 12.75pt; background-color: silver;" height="17"></td><td class="xl27" style="border-style: none solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: silver;" width="257">Overall Expected Results:</td><td class="xl71" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 0.5pt 0.5pt medium; width: 326pt; background-color: transparent;" colspan="5" width="435"></td><td class="xl25" style="border-style: none solid none none; border-color: rgb(212, 208, 200) windowtext; border-width: medium 1pt medium medium; width: 156pt; background-color: silver;" width="208"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl28" style="border-style: none none none solid; border-color: windowtext rgb(212, 208, 200) rgb(212, 208, 200) windowtext; border-width: medium medium medium 1pt; height: 12.75pt; background-color: silver;" height="17"></td><td class="xl27" style="border-style: none solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: silver;" width="257">Requirements Verified:</td><td class="xl71" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 0.5pt 0.5pt medium; width: 326pt; background-color: transparent;" colspan="5" width="435"></td><td class="xl25" style="border-style: none solid none none; border-color: rgb(212, 208, 200) windowtext; border-width: medium 1pt medium medium; width: 156pt; background-color: silver;" width="208"></td></tr><tr style="height: 13.5pt;" height="18"><td class="xl29" style="border-style: solid none solid solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: 0.5pt medium 1pt 1pt; height: 13.5pt; background-color: silver;" height="18"></td><td class="xl30" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 1pt medium; width: 193pt; background-color: silver;" width="257">Prerequisites:</td><td class="xl74" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 0.5pt 1pt medium; width: 326pt; background-color: transparent;" colspan="5" width="435"></td><td class="xl31" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 1pt 1pt medium; width: 156pt; background-color: silver;" width="208"></td></tr><tr style="height: 13.5pt;" height="18"><td class="xl32" style="border: medium none rgb(212, 208, 200); height: 13.5pt; background-color: transparent;" colspan="2" height="18">Test Information</td><td class="xl34" style="border: medium none rgb(212, 208, 200); width: 200pt; background-color: transparent;" width="266"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl36" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl34" style="border: medium none rgb(212, 208, 200); width: 84pt; background-color: transparent;" width="112"></td><td class="xl33" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl37" style="border-style: solid none solid solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: 1pt medium 0.5pt 1pt; height: 12.75pt; background-color: silver;" height="17"></td><td class="xl38" style="border-style: solid solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: 1pt 0.5pt 0.5pt medium; background-color: silver;">Name of Tester:</td><td class="xl39" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl40" style="border-style: solid none; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: 1pt medium 0.5pt; background-color: silver;"></td><td class="xl41" style="border-style: solid none; border-color: windowtext rgb(212, 208, 200); border-width: 1pt medium 0.5pt; background-color: silver;"></td><td class="xl38" style="border-style: solid solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: 1pt 0.5pt 0.5pt medium; background-color: silver;">Date:</td><td class="xl42" style="border-style: solid none; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: 1pt medium 0.5pt; width: 84pt; background-color: transparent;" width="112"></td><td class="xl43" style="border-style: solid solid none; border-color: windowtext windowtext rgb(212, 208, 200); border-width: 1pt 1pt medium 0.5pt; background-color: silver;"></td></tr><tr style="height: 13.5pt;" height="18"><td class="xl44" style="border-style: none none solid solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 1pt 1pt; height: 13.5pt; background-color: silver;" height="18"></td><td class="xl45" style="border-style: none solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 1pt medium; background-color: silver;" x:str="Build Number: ">Build Number: </td><td class="xl46" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 1pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl47" style="border-style: none none solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 1pt; background-color: silver;"></td><td class="xl48" style="border-style: none none solid; border-color: windowtext rgb(212, 208, 200); border-width: medium medium 1pt; background-color: silver;"></td><td class="xl45" style="border-style: none solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: medium 0.5pt 1pt medium; background-color: silver;">Time:</td><td class="xl49" style="border-style: none none solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: medium medium 1pt; width: 84pt; background-color: transparent;" width="112"></td><td class="xl50" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 1pt 1pt 0.5pt; background-color: silver;"></td></tr><tr style="height: 13.5pt;" height="18"><td class="xl32" style="border: medium none rgb(212, 208, 200); height: 13.5pt; background-color: transparent;" colspan="2" height="18">Summary Information</td><td class="xl34" style="border: medium none rgb(212, 208, 200); width: 200pt; background-color: transparent;" width="266"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl36" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl34" style="border: medium none rgb(212, 208, 200); width: 84pt; background-color: transparent;" width="112"></td><td class="xl33" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td></tr><tr style="height: 13.5pt;" height="18"><td class="xl51" style="border-style: solid none solid solid; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: 1pt medium 1pt 1pt; height: 13.5pt; background-color: silver;" x:num="" height="18">25</td><td class="xl52" style="border-style: solid solid solid none; border-color: windowtext windowtext windowtext rgb(212, 208, 200); border-width: 1pt 0.5pt 1pt medium; background-color: silver;">total steps</td><td class="xl53" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;">Number of steps complete by status:</td><td class="xl54" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;" x:num="" x:fmla="=COUNTIF(D12<img src=&quot;images/smilies/biggrin.gif&quot; border=&quot;0&quot; alt=&quot;&quot; title=&quot;big grin&quot; smilieid=&quot;3&quot; class=&quot;inlineimg&quot; />14,&quot;x&quot;)">0</td><td class="xl54" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;" x:num="" x:fmla="=COUNTIF(E12<img src=&quot;images/smilies/../../../games/chat/img/furious.gif&quot; border=&quot;0&quot; alt=&quot;&quot; title=&quot;Furious&quot; smilieid=&quot;12&quot; class=&quot;inlineimg&quot; />14,&quot;x&quot;)">0</td><td class="xl54" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;" x:num="" x:fmla="=COUNTIF(F12:F14,&quot;x&quot;)">0</td><td class="xl55" style="border-style: solid none; border-color: windowtext rgb(212, 208, 200) windowtext windowtext; border-width: 1pt medium; background-color: silver;">% Complete:</td><td class="xl56" style="border-style: solid; border-color: windowtext; border-width: 1pt 1pt 1pt 0.5pt; background-color: silver;" x:num="0" x:fmla="=(D11+E11+F11)/A11" align="right">0%</td></tr><tr style="height: 13.5pt;" height="18"><td class="xl57" style="border: medium none rgb(212, 208, 200); height: 13.5pt; background-color: transparent;" height="18"></td><td class="xl33" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl33" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl35" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl33" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td><td class="xl33" style="border: medium none rgb(212, 208, 200); background-color: transparent;"></td></tr><tr style="height: 26.25pt;" height="35"><td class="xl58" style="border-style: solid; border-color: windowtext; border-width: 1pt 0.5pt 1pt 1pt; height: 26.25pt; background-color: silver;" height="35">Step</td><td class="xl59" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; width: 193pt; background-color: silver;" width="257">Description</td><td class="xl59" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; width: 200pt; background-color: silver;" width="266">Expected Results</td><td class="xl60" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;">Pass</td><td class="xl60" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;">Fail</td><td class="xl60" style="border-style: solid solid solid none; border-color: windowtext; border-width: 1pt 0.5pt 1pt medium; background-color: silver;">N/A</td><td class="xl91" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 1pt 1pt 1pt medium; background-color: silver;" colspan="2">Defect/Comments</td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">1</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl84" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 1pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">2</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">3</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">4</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">5</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">6</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">7</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">8</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">9</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">10</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">11</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">12</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">13</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">14</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">15</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">16</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">17</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">18</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">19</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">20</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">21</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">22</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">23</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">24</td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl62" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 12.75pt;" height="17"><td class="xl61" style="border-style: none solid solid; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt 1pt; width: 14pt; height: 12.75pt; background-color: transparent;" x:num="" width="19" height="17">25</td><td class="xl64" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 0.5pt medium; width: 193pt; background-color: transparent;" width="257"></td><td class="xl64" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 0.5pt medium; width: 200pt; background-color: transparent;" width="266"></td><td class="xl63" style="border-style: none solid solid none; border-color: rgb(212, 208, 200) windowtext windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl65" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl65" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 0.5pt medium; width: 14pt; background-color: transparent;" width="19"></td><td class="xl86" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 0.5pt medium; width: 240pt; background-color: transparent;" colspan="2" width="320"></td></tr><tr style="height: 13.5pt;" height="18"><td class="xl66" style="border-style: none solid solid; border-color: windowtext; border-width: medium 0.5pt 1pt 1pt; height: 13.5pt; background-color: silver;" height="18"></td><td class="xl67" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 1pt medium; width: 193pt; background-color: silver;" width="257">End of Test Case</td><td class="xl68" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 1pt medium; width: 200pt; background-color: silver;" width="266"></td><td class="xl69" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 1pt medium; background-color: silver;"></td><td class="xl69" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 1pt medium; background-color: silver;"></td><td class="xl69" style="border-style: none solid solid none; border-color: windowtext; border-width: medium 0.5pt 1pt medium; background-color: silver;"></td><td class="xl77" style="border-style: solid solid solid none; border-color: windowtext black windowtext windowtext; border-width: 0.5pt 1pt 1pt medium; width: 240pt; background-color: silver;" colspan="2" width="320"></td></tr></tbody></table>

Fazal
August 25, 2009, 11:53 AM
How to reduce the size?

One World
August 25, 2009, 01:41 PM
How to reduce the size?

Good question.

abz..+
September 3, 2009, 06:13 PM
http://www.fromthepavilion.org/player.htm?playerId=140441

One World
September 3, 2009, 10:56 PM
Is the following link which you are trying to test

http://www.fromthepavilion.org/player.htm?playerId=140441AAEC38EED

Tigers_eye
September 9, 2009, 01:59 PM
How do you paste youtube videos on posts?

Murad
September 10, 2009, 08:24 PM
How do you paste youtube videos on posts?

just copy & paste the embeded code from youtube.

_Rafi_
November 12, 2009, 11:56 AM
ID Rat. Name Nat. Career Best Rating
1 719 D.L. Vettori (http://www.reliancemobileiccrankings.com/playerdisplay/odi/bowling/?id=2172) 790 v England, 23/02/2008
2 716 Shakib Al Hasan (http://www.reliancemobileiccrankings.com/playerdisplay/odi/bowling/?id=6740) 716 v Zimbabwe, 05/11/2009
3 701 R.W. Price (http://www.reliancemobileiccrankings.com/playerdisplay/odi/bowling/?id=2288) 701 v South Africa, 10/11/2009
"

_Rafi_
November 12, 2009, 12:14 PM
http://static.cricinfo.com/db/PICTURES/CMS/110100/110141.jpg

_Rafi_
January 1, 2010, 11:48 PM
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/LhqPXdErx14&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/LhqPXdErx14&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>