window.onload = function() {

}
	
// Neues Fenster bzw. PopUp oeffnen
function openWin(url,oW_width,oW_height,oW_menubar,oW_toolbar,oW_location,oW_status,oW_scrollbars,oW_resizable) {
	values = 'width=' + oW_width + ',height=' + oW_height + ',menubar=' + oW_menubar + ',toolbar=' + oW_toolbar + ',location=' + oW_location + ',status=' + oW_status + ',scrollbars=' + oW_scrollbars + ',resizable=' + oW_resizable;
	// alert(values); // Use alert method to test your values
	window.open(url,'_blank',values);
}

// Fenster bzw. PopUp schliessen
function closeWin() {
	if (window.close) document.write('<p><a href="#" onclick="window.close();return false;">Fenster schlie&szlig;en</a></p>');
}

/* change html object's style class */
function changeClass(obj, newClass) {
	if(obj && newClass){
		obj.className = newClass;
	}
}