/*********************************************************
        Copyright © Pasi Pietilä 2002
   			http://www.students.tut.fi/~pietilap
   				pasi.pietila@tut.fi    
**********************************************************/
//Perus talukon koon määrittelyt

var widht = screen.width  //resoluution tarkistus...

if (widht < 1000) {
	document.write('<table cellpadding=0 cellspacing=1 border=0 background="http://www.tampereenpainiseura.com/gif/tausta01.gif" color="#FFFF00" height=100%>');
}
else {
	var leveys = widht * 0.75;   // tilaa historia palkille...
	document.write('<table cellpadding=0 cellspacing=1 border=0 background="http://www.tampereenpainiseura.com/gif/tausta01.gif" color="#FFFF00" width="' + leveys + '" height=100%>');
}
	
   