//<!--

if(document.all) {
	docPtr			= "document.all.";
	visPtr			= ".style.visibility";
}
else {
	docPtr			= 'document.getElementById("';
	visPtr			= '").style.visibility';
}

function drawStroke(rootPath, name, linkHref, imgRef, width, height, borderWidth, colour, linkTarget) {
	document.write('<div style="position:relative; width:' + width + 'px; height:' + height + 'px;">');
	document.write('<div style="position:absolute; z-index:2;"><img src="' + imgRef + '" width="' + width + '" height="' + height + '" alt="" border="0"></div>');
	
	tableStyle = 'border-width:' + borderWidth + 'px; border-style:solid; width:' + width + 'px; height:' + height + 'px;';
	if(colour != '') tableStyle += ' border-color:#' + colour + ';';
	
	document.write('<div style="position:absolute; z-index:3; visibility:hidden;" id="' + name + '"><table cellpadding="0" cellspacing="0" border="0" class="colourStroke" style="' + tableStyle + '"><tr><td></td></tr></table></div>');
	document.write('<div style="position:absolute; z-index:4;"><a href="' + linkHref + '" target="' + linkTarget + '" onmouseover="showStroke(\'' + name + '\')" onmouseout="hideStroke(\'' + name + '\')"><img src="' + rootPath + '_pics/transparent.gif" width="' + width + '" height="' + height + '" alt="" border="0"></a></div>');
	document.write('</div>');
}

//Für Links mit JavaScript Popup-Funktion
function drawStrokePopWin(rootPath, name, linkHref, imgRef, width, height, borderWidth, colour, popWinWidth, popWinHeight, scrollValue) {
	document.write('<div style="position:relative; width:' + width + 'px; height:' + height + 'px;">');
	document.write('<div style="position:absolute; z-index:2;"><img src="' + imgRef + '" width="' + width + '" height="' + height + '" alt="" border="0"></div>');
	
	tableStyle = 'border-width:' + borderWidth + 'px; border-style:solid; width:' + width + 'px; height:' + height + 'px;';
	if(colour != '') tableStyle += ' border-color:#' + colour + ';';
	
	document.write('<div style="position:absolute; z-index:3; visibility:hidden;" id="' + name + '"><table cellpadding="0" cellspacing="0" border="0" class="colourStroke" style="' + tableStyle + '"><tr><td></td></tr></table></div>');
	document.write('<div style="position:absolute; z-index:4;"><a href="' + linkHref + '" target="displayWin" onclick="popWindow(\'' + linkHref + '\',' + popWinWidth + ',' + popWinHeight + ',\'' + scrollValue + '\');return returnVal" onmouseover="showStroke(\'' + name + '\')" onmouseout="hideStroke(\'' + name + '\')"><img src="' + rootPath + '_pics/transparent.gif" width="' + width + '" height="' + height + '" alt="" border="0"></a></div>');
	document.write('</div>');
}

function showStroke(name) {
	eval(docPtr + name + visPtr + '="visible";');
}

function hideStroke(name) {
	eval(docPtr + name + visPtr + '="hidden";');
}

//--> 