var popwindow
var tisurl
var tiswidth
var tisheight
var tistopposition
var tisleftposition


function popup(thisurl,thiswidth,thisheight,thistopposition,thisleftposition) {
	tisurl=thisurl
	tiswidth=thiswidth
	tisheight=thisheight
	tistopposition=thistopposition
	tisleftposition=thistopposition

	popwindow=window.open(tisurl, "newwindow", "toolbar=no,width="+tiswidth+",height="+tisheight+",top="+tistopposition+",left="+(tisleftposition)+"");

	
}

