// JavaScript Document
function ActivateFlash(){
	theObjects = document.getElementsByTagName("object"); 
	for (var i = 0; i < theObjects.length; i++) { 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
	}
}
function forward_url(url) {
	location.href=url;
}
function open_window(url, window_width, window_height) {
	xpos = screen.width/2-window_width/2;
	ypos = 0;
	ablak = 'motorvaros';
	if (url.indexOf('?')!=(-1)) {
		new_window = open(url+'&popup=1', ablak, 'width='+window_width+',height='+window_height+',status=no,menubar=no,scrollbars=yes,resizable=yes,top='+ypos+',left='+xpos+''); if (window.focus) (new_window.focus());
	} else {
		new_window = open(url+'?popup=1', ablak, 'width='+window_width+',height='+window_height+',status=no,menubar=no,scrollbars=yes,resizable=yes,top='+ypos+',left='+xpos+''); if (window.focus) (new_window.focus());
	}
}