/*
SCRIPT EDITE SUR L'EDITEUR JAVACSRIPT
http://www.editeurjavascript.com
*/

document.write('<style type="text/css">\nA.ejsmenu { color:#000000;text-decoration:none }\n</style>')
document.write('<DIV id=menu_dep STYLE="position:absolute; top:10; left:10"><TABLE BORDER=0 CELLPADDING=1 CELLSPACING=2 WIDTH=150>')
document.write('<TR><TD BGCOLOR=#000000 onMouseDown="testClick()" onMouseUp="testClick2()" style="cursor:move"><FONT SIZE=2 face="Verdana" COLOR=#FFCC00><B>Menu</B></FONT></TD></TR>')
document.write('</TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=VK.3002(DB).htm CLASS=ejsmenu>VK.3002</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=Panther-Ausf.D1.htm CLASS=ejsmenu>Panther Ausf.D1</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=Panther-Ausf.D2.htm CLASS=ejsmenu>Panther Ausf.D2</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=PantherD1-Pz4H-Turret.htm CLASS=ejsmenu>Panther Ausf.D1 w/Pz4H Turret</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Beobachtungspanther.htm CLASS=ejsmenu>Beobachtungspanther</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.A(early).htm CLASS=ejsmenu>Panther Ausf.A (early)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.A(late).htm CLASS=ejsmenu>Panther Ausf.A (late)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.G(early).htm CLASS=ejsmenu>Panther Ausf.G (early)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.G(SW).htm CLASS=ejsmenu>Panther Ausf.G (Steel Wheels)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.G(late).htm CLASS=ejsmenu>Panther Ausf.G (late)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=BfWg5D-Acetylene.htm CLASS=ejsmenu>Befhelspanther Ausf.D/Acetylene (Sd.Kfz.268)</A></FONT>&nbsp;</TD></TR></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Befhelspanther-Ausf.G(Sd.Kfz.267).htm CLASS=ejsmenu>Befhelspanther Ausf.G (Sd.Kfz.267)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Befhelspanther-Ausf.G(Sd.Kfz.268).htm CLASS=ejsmenu>Befhelspanther Ausf.G (Sd.Kfz.268)</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.G-Schmallturm.htm CLASS=ejsmenu>Panther Ausf.G w/Schmallturm</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.F.htm CLASS=ejsmenu>Panther Ausf.F</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-Ausf.F-PantherG-Turret.htm CLASS=ejsmenu>Panther Ausf.F w/Panther Ausf.G Turret</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-2.htm CLASS=ejsmenu>Panther II</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Arial">&nbsp;<A HREF=Panther-2-PantherG-Turret.htm CLASS=ejsmenu>Panther II w/Panther Ausf.G Turret</A></FONT>&nbsp;</TD></TR></TABLE></DIV>')

clickOui = false;
bloc_x = 10;
bloc_y = 10;

function testClick() {
		base_x = x-bloc_x;
		base_y = y-bloc_y;
		clickOui=true;
	}
function testClick2() {
		clickOui=false;
	}


function get_mouse(e)
	{
	x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	if(clickOui && document.getElementById)
		{
		bloc_x = x-base_x;
		bloc_y = y-base_y;
		}
	document.getElementById("menu_dep").style.left = bloc_x
  	document.getElementById("menu_dep").style.top = bloc_y
	}
if(navigator.appName.substring(0,3) == "Net")
	document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse;
