// JavaScript Document

function launchGame() {
   			var Link = document.getElementById('clickMe');
			if (Link.click)
				Link.click();
			else
				MozillaLinkClick(Link);
			//alert("here");
   		}
		
/**
* Emulate the IE link.click method.
* plnkNode - The link object to emulate the click on.
*/
function MozillaLinkClick(plnkNode)
{
	// Emulate click on Mozilla
	var bolFollowLink = true;
	var strTarget = null;
	
	// Run the link onClick event.
	if (plnkNode.onclick)
	{
		if (plnkNode.onclick() == false)
		{
		bolFollowLink = false;
		}
	}

	// Get the link target.
	if (plnkNode.target)
	{
		strTarget = plnkNode.target;
	}
	if (bolFollowLink)
	{
		if (strTarget == null)
		{
			// Open using the default target if not set on the link.
			window.open(plnkNode.href);
		} else {
			// Open using the link target.
			window.open(plnkNode.href, strTarget);
		}
	}
}
