// JavaScript Document
function setClass(element_id, class_name) {
	alert('include');
	alert(class_name);
	var el=document.getElementById(element_id);
	el.className = class_name;
}

function swapClass(element_id, class1, class2) {
	
	var el=document.getElementById(element_id);
	
	if(el.className==class1) {
		el.className = class2;
	} else {
		el.className = class1;
	}
	
}

function switchStyle(element_id, style_type, style_value) {
}

function popUp(URL,width,height) {
	day = new Date();
	id = day.getTime();
	win_width = width;
	win_height = height;
	win_x = (screen.width/2)-(win_width/2);
	win_y = (screen.height/2)-(win_height/2)-10;
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+win_width+",height="+win_height+",left="+win_x+",top="+win_y+"');");
}
