function run(type,command){

if (!command) {
command = "";
}

if (type == 'filemanager') {
	width = 560;
	height = 370;
}else if (type == 'pdf') {
	width = 700;
	height = 550;
	command = "?id="+command;
}else if (type == 'support') {
	width = 450;
	height = 350;
}else if (type == 'contract') {
	width = 600;
	height = 400;
}else{
	width = 780;
	height = 500;
}

var left = (screen.width-width)/2;
var top = (screen.height-height)/2;
window.open("incl/cpanel/" +type + "/"+command, type,"top="+top+",left="+left+",width="+width+",height="+height+",resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no");
}

function contract(){

width = 600;
height = 450;

var left = (screen.width-width)/2;
var top = (screen.height-height)/2;
window.open("incl/page/contract/", "aleptra_contract","top="+top+",left="+left+",width="+width+",height="+height+",resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no");
}

function remove(p,id) {
if(confirm('Är du säker på att du vill ta bort posten?')) {
self.location.href='index.php?p='+p+'&remove='+id;
self.location.href='index.php?p='+p;
}else{
return false;
}
}