<!--

function Window(name) {
windWin=window.open(name,"wind_window","resizable=1,toolbar=1,location=0,directories=0,status=1,menubar=0,scrollbars=1,copyhistory=0,width=760,height=400,top=5,left=0");
window.windWin.focus();
}

function PicWindow(name,width,height) {
width  = width+40;
height = height+50;
picWin=window.open(name,"pic_window","resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width="+width+",height="+height+",top=5,left=5");
window.picWin.focus();
}

function ToolWindow(name) {
toolWin=window.open(name,"tool_window","resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=700,height=500,top=5,left=5");
window.toolWin.focus();
}

function SpecToolWindow(name,file) {
var answer = confirm("Are you sure you want to permanently delete "+file+"\n\nAre you sure it is not being used by any active blog entries?\n\n");
if (answer)
	{
specWin=window.open(name+"?p="+file,"spec_window","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=500,height=50,top=5,left=5");
window.specWin.focus();
	} else {
	alert ("Delete Canceled!")
	}
return true;
}
//-->