function change()
{
document.getElementById('custom').value="";
}
function checkRGB(element){
if(document.getElementById(element).value>255){
document.getElementById(element).value=255;
}
var red=document.getElementById("Red").value;
var green=document.getElementById("Green").value;
var blue=document.getElementById("Blue").value;
document.DrawRGB.src="http://randomsig.caiyern.net/DrawRGB.php?red=" + red + "&green=" + green + "&blue="+blue;
}
function openWindow(URL){
window.open(URL, '_blank', 'width=675, height=800, scrollbars=yes, resizeable=no, toolbar=no');
}
function actionChange(){
	if(document.getElementById('act').value=="Add"){
		window.location="http://randomsig.caiyern.net/index.php?page=ManageDir&act=Create";
	}else{
		window.location="http://randomsig.caiyern.net/index.php?page=ManageDir";	
	}
}
