// Crohns & Me js call
// by Allistar D. Peters for HBD inspired by n8g
// 

function theLink1()	
{
	
	//replace with correct link when ready to deployed
	return '/registration/';  
	
	//tracking URL can be implemented here
}

//Crohns & Me link
function theLink2()	
{

	//replace with correct link when ready to deployed
	return '/registration/';  
	
	//tracking URL can be implemented here
}

//iphone, magazine & email link
function theLink3()	
{
	
	//replace with correct link when ready to deployed
	return '/registration/';  
	
	//tracking URL can be implemented here
}

function makeFrame(r1,r2,r3) { 
	var thelink = '/blank.aspx?name=' + r1 + '&vname=' + r2 + '&perc=' + r2;
    ifrm = document.createElement("IFRAME"); 
   ifrm.setAttribute("src", thelink); 
   ifrm.style.width = 1+"px"; 
   ifrm.style.height = 1+"px"; 
   document.body.appendChild(ifrm);

}  
