var thankswin = null;
var HTML = '';
var img_src = (new Image().src) = 'http://www.hearinghealthsupplement.ca/images/Thanks_confirm.jpg';

function thanks() {
HTML = '';
HTML += '<html><head><title>* * * Thank you! * * *</title></head>';
HTML += '<body bgcolor="white" onblur="self.close()" onclick="self.close()" style="margin:0px;">';
HTML += '<img src="' + img_src + '">';
HTML += '<script>onload=function(){setTimeout("self.close()",5000);}<'+'/script>';
HTML += '</body></html>';
var w = 453; //window width
var h = 336; //window height
var l = (screen.availWidth - w) / 2;
var t = (screen.availHeight - h) / 2;
thankswin = open('javascript:opener.HTML','thankswin','left='+l+',top='+t+',width='+w+',height='+h+',status=0');
if (thankswin && !thankswin.closed) thankswin.focus();
return true;
}
