function swap(id){
	var obj = document.getElementById(id);
	if(obj){
		if(obj.className='show'){
			obj.className = 'noshow';
		}
		else{
			obj.className = 'show';
		}
	} 
}
function popwin(id){

	var win = window.open('modules/popup.php?page='+id,'thewindow','width=650,height=350,directories=no,location=no,menubar=no,scrollbars=auto,status=no,toolbar=no,resizable=yes');
	//win.focus();
	
}
function confirmRedirect(message,newlocation){
	if(confirm(message)){
		document.location=newlocation;
	}
}
function checkNewProduct(){
	if(document.newProductForm.newproduct.value==""){
		alert("Du måste ange ett produktnamn");
		return false;
	}
	
	return true;
}