// Operations for Running Java Content @ djxmmx.net
// Copyright 2006 - 2009 DJXMMX Ltd.

// Fully Customizable

function RunJava(src, code, width, height)
{
	document.getElementById('javagamecontent').innerHTML='\n'
		+ '<object classid="CLSID:8AD9C840-044E-11D1-B3E9-00805F499D93" width="'+width+'px" height="'+height+'px">\n'
		+ '<param name="archive" value="'+src+'">\n'
		+ '<param name="code" value="'+code+'">\n'
		+ '<embed archive="'+src+'" code="'+code+'" width="'+width+'px" height="'+height+'px" type="application/x-java-applet" pluginspage="https://www.java.com/en/download/index.jsp">\n'
		+ '<\/object>'
}

// Last Modified: November 3, 2008 (11/03/09)