/*@cc_on
@if (@_jscript_version <= 5.6)
  // js code for IE6 or down
function hideIEWarning() {
	var el = document.getElementById('ie6_warning');
	el.style.display = 'none';
	return false;
}
	window.onload = function() {
		var div = document.createElement('div');
		div.setAttribute('id', 'ie6_warning');
		var textNote = 'The site you are visiting has known issues with your browser IE6, you have 3 options:<br/>';
		textNote += '<ul style="list-style: none;"><li>Ø  Use the <a href="http://www.my-sexhealth.com">new website</a>, which has more product choices</li>';
		textNote += '<li>Ø  Upgrade your browser to <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">IE 8</a></li>';
		textNote += '<li>Ø  Use this site and endure the bug, changing currency will empty your cart. To avoid this we recommend you set your preferred currency before shopping.</li>';
		textNote += '</ul><p><a href="#" onclick="hideIEWarning()">Thank you!</a></p>';
		div.innerHTML = textNote;
		div.style.position = 'absolute';
		div.style.top = '100px';
		div.style.left = '200px';
		div.style.width = '40%';
		div.style.height = '200px';
		div.style.backgroundColor = '#00B7E9';
		div.style.border = '2px outset #000000';
		div.style.padding = '10px';
		div.style.opacity = '0.7';

		document.body.appendChild(div);
	};
/*@end @*/
/*function hideIEWarning() {
	var el = document.getElementById('ie6_warning');
	el.style.display = 'none';
}
if (/MSIE 6/i.test(navigator.userAgent)) {
	window.onload = function() {
		var div = document.createElement('div');
		div.setAttribute('id', 'ie6_warning');
		var textNote = 'The site you are visiting has known issues with your browser IE6, you have 3 options:<br/>';
		textNote += '<ul style="list-style: none;"><li>Ø  Use the <a href="http://www.my-sexhealth.com">new website</a>, which has more product choices</li>';
		textNote += '<li>Ø  Upgrade your browser to <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">IE 8</a></li>';
		textNote += '<li>Ø  Use this site and endure the bug, changing currency will empty your cart. To avoid this we recommend you set your preferred currency before shopping.</li>';
		textNote += '</ul><p><a href="#" onclick="hideIEWarning()">Thank you!</a></p>';
		div.innerHTML = textNote;
		div.style.position = 'absolute';
		div.style.top = '100px';
		div.style.left = '200px';
		div.style.width = '40%';
		div.style.height = '200px';
		div.style.backgroundColor = '#00B7E9';
		div.style.border = '2px outset #000000';
		div.style.padding = '10px';
		div.style.opacity = '0.7';

		document.body.appendChild(div);
	};
}
*/
