/*CONTROLS POSITION OF THE LOGO*/

onload=function() {

var divh = document.getElementById('Splash_Verilan').offsetHeight;
var divw = document.getElementById('Splash_Verilan').offsetWidth;

var divhalfw = "-"+ divh/2;
var divhalf = "-"+ divh/2;

//alert(divh +"px");
//alert(divhalf +"px");
document.getElementById('Splash_Verilan').style.marginTop= divhalf + "px"; 
document.getElementById('Splash_Verilan').style.marginLeft= divhalfw + "px"; 

}