function OpenWindow(url,width,height,lposition,tposition,title)
{
	var win = window.open(url,'Vorschau','top=' + tposition + ',left=' + lposition + ',toolbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=' + width + ', height=' + height);
	win.focus();
}		