function pviiW3Cbg(obj, pviiColor) { //v1.1 by Project VII
	obj.style.backgroundColor=pviiColor
}

function popUp(url){
	window.open(url,"pop","status=no,toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,width=740,height=550,top=50,left=50")
}

function pop(URL)
 {
  Img1 = new Image()
  Img1.src=URL;

var s1 = "<HTML>" +
"<HEAD>" +
"<TITLE>Detailansicht - Klick auf Bild schliesst das Fenster<\/TITLE>" +
"<\/HEAD>" +
'<body MARGINHEIGHT="0" MARGINWIDTH="0" topmargin="0" rightmargin="0" leftmargin="0" bgcolor="#EEEEEE">' +
"<img name='FullImage' border='0' onLoad='if (opener) opener.changeBild(this)' onClick='self.close()' src='" +URL +
"'>"+
"<\/body>"+
"<\/HTML>"
  popup = window.open("","Bild","status=no,toolbar=no,scrollbars=yes,resizable=yes,width=200,height=200,top=50,left=50")
  popup.document.write(s1)
  popup.document.close()
};


function changeBild(bild)
{
if (bild.width>0 && bild.width<screen.width)
  popup.resizeTo(bild.width+35,bild.height+35)
  else  popup.resizeTo(screen.width-100,screen.height-100)
}

function openPopup(url){
window.open(url, "popup");
}


var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all
var dragswitch=0
var nsx
var nsy
var nstemp
function drag_drop_ns(name){
if (!ns4)
return
temp=eval(name)
temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
temp.onmousedown=gons
temp.onmousemove=dragns
temp.onmouseup=stopns
}
function gons(e){
temp.captureEvents(Event.MOUSEMOVE)
nsx=e.x
nsy=e.y
}
function dragns(e){
if (dragswitch==1){
temp.moveBy(e.x-nsx,e.y-nsy)
return false
}
}
function stopns(){
temp.releaseEvents(Event.MOUSEMOVE)
}
 function drag_drop(e){
if (ie4&&dragapproved){
crossobj.style.left=tempx+event.clientX-offsetx
crossobj.style.top=tempy+event.clientY-offsety
return false
}
else if (ns6&&dragapproved){
crossobj.style.left=tempx+e.clientX-offsetx
crossobj.style.top=tempy+e.clientY-offsety
return false
}
}
function initializiere_drag(e){
crossobj=ns6? document.getElementById("einepopupbox") : document.all.einepopupbox
var firedobj=ns6? e.target : event.srcElement
var topelement=ns6? "HTML" : "BODY"
while (firedobj.tagName!=topelement&&firedobj.id!="dragbar"){
firedobj=ns6? firedobj.parentNode : firedobj.parentElement
}
if (firedobj.id=="dragbar"){
offsetx=ie4? event.clientX : e.clientX
offsety=ie4? event.clientY : e.clientY
tempx=parseInt(crossobj.style.left)
tempy=parseInt(crossobj.style.top)
dragapproved=true
document.onmousemove=drag_drop
}
}
document.onmousedown=initializiere_drag
document.onmouseup=new Function("dragapproved=false")

function box_weg(){
if (ie4||ns6)
crossobj.style.visibility="hidden"
else if (ns4)
document.einepopupbox.visibility="hide"
}

function box_da(){
if (ie4||ns6)
crossobj.style.visibility="visible"
else if (ns4)
document.einepopupbox.visibility="visible"
}
