// JavaScript Document

function show_code(id,num,type){
if(type==2){
newWin = window.open('../../go-to-retailer.php?id='+id,'viewretailer','width='+screen.width+',height='+screen.height+',left=0,top=0,toolbar=yes,location=yes,status=no,menubar=no,scrollbars=yes,resizable=yes').blur();
}else{
newWin = window.open('go-to-retailer.php?id='+id,'viewretailer','width='+screen.width+',height='+screen.height+',left=0,top=0,toolbar=yes,location=yes,status=no,menubar=no,scrollbars=yes,resizable=yes').blur();
}
document.getElementById('useLink'+num).style.display = "none";
document.getElementById('voucher'+num).style.display = "";
window.focus();
}

function show_code_temp(id){
newWin = window.open('http://www.moneysavingdiscounts.co.uk/go-to-retailer.php?id='+id,'viewretailer','width='+screen.width+',height='+screen.height+',left=0,top=0,toolbar=yes,location=yes,status=no,menubar=no,scrollbars=yes,resizable=yes').focus();
document.getElementById('code1'+id).style.display = "none";
document.getElementById('code2'+id).style.display = "";
}

function copyRef(reftext) 
{
Copied = reftext.createTextRange();
Copied.execCommand("RemoveFormat");
Copied.execCommand("Copy");
}