﻿
function popme(fileName, top, left, width, height)
{
    width = width + 15;
	window.open(fileName,"","top="+top+",left="+left+",toolbars=no,maximize=no,resize=no,width="+width+",height="+height+",location=no,directories=no");
}

function dlme(file)
{
	window.open('GetFile.aspx?fileid=' + file,"Download","top=10,left=10,toolbars=no,maximize=no,resize=no,width=10,height=10,location=no,directories=no");
}

