// JavaScript Document Club fabulous microsite homepage.
// This adds the Flash to the homepage. Due to a height discrepency between the Flash and Non-JavaScript version on the homepage a height fix has also been added. 

function loadFlash() {
	var so = new SWFObject('superdrug_microsite.swf', 'superdrug_microsite', '980', '578', '8', '#000000');
	so.addParam('quality', 'high');
	so.addParam('pluginspage', 'http://www.macromedia.com/go/getflashplayer');
	so.addParam('name', 'superdrug_microsite');
	so.addParam('movie', 'superdrug_microsite');
	so.addParam('allowScriptAccess', 'sameDomain');
	so.write('content');
	
	document.getElementById("content").style.height = "577px";
}

function compTerms(){
	window.open('lily_terms.htm', 'lily', 'width=500, height=600, scrollbars=yes');
}

function regTerms(){
	window.open('comp_terms.htm', 'comp', 'width=500, height=600, scrollbars=yes');
}

function disableLink() {
	document.getElementById('termsPop').setAttribute('href', 'javascript:void(0)');
}

