
// SEO Functions
function swfPub_flace(id, w, h){
    var o = document.getElementById(id);
    if ( o != null ) {
		var s = o.style;
		s.width = w+'px';
		s.height = h+'px';
		s.overflow = 'hidden';
    }
}

