function openWindow(url, width, height, alt, posLeft, posTop) {
	newWindow = window.open(url,"newWindow","width="+width+",height="+height+",left="+posLeft+",top="+posTop);
    newWindow.opener = self;
	newWindow.focus();
}



