/* evo_live.js (C) 2010 Sancar Saran last update 28.01.2010 */

var my_screen_width  = screen.width;
var wpercent_80      = Math.round((my_screen_width / 100) * 80);
var wpercent_70      = Math.round((my_screen_width / 100) * 70);
var wpercent_50      = Math.round((my_screen_width / 100) * 50);

var my_screen_height = screen.height;
var hpercent_80      = Math.round((my_screen_height / 100) * 80);
var hpercent_70      = Math.round((my_screen_height / 100) * 70);
var hpercent_50      = Math.round((my_screen_height / 100) * 50);


var myWidth = 0, myHeight = 0;

if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
	myWidth = window.innerWidth;
	myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	//IE 6+ in 'standards compliant mode'
	myWidth = document.documentElement.clientWidth;
	myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	//IE 4 compatible
	myWidth = document.body.clientWidth;
	myHeight = document.body.clientHeight;
}

var wwpercent_80      = Math.round((myWidth / 100) * 80);
var wwpercent_70      = Math.round((myWidth / 100) * 70);
var wwpercent_50      = Math.round((myWidth / 100) * 50);

var whpercent_80      = Math.round((myHeight / 100) * 80);
var whpercent_70      = Math.round((myHeight / 100) * 70);
var whpercent_50      = Math.round((myHeight / 100) * 50);




