<!--
OLpageDefaults(BGCLASS,'olbg', CGCLASS,'olcg', FGCLASS,'olfg',
 CAPTIONFONTCLASS,'olcap', CLOSEFONTCLASS,'olclo', TEXTFONTCLASS,'oltxt');

function sethtmlForm()
{

return '<div class="content">'		
		+'<div id="wrapper" style="padding-bottom:0px;">'
		+'<div id="columnfaq">'
		+'<div id="divLoader" style="display:none"><img src="iframe/ajax-loader.gif" /></div>'		
		+'<div id="divMain">'
		+'<h2>Our Privacy Policy in Simple Terms</h2>'
		+'<br />'
		+'<br />'
        +'We take the privacy of our visitors seriously and we are committed to safeguarding your privacy while providing a personalised and valuable service.'
		+'<br />'
		+'<br />'
		+'Where you provide personal information such as your email address, we will only use it to deliver the services you have requested.'
		+'<br />'
		+'<br />'
        +'We promise never to abuse, share or mishandle any information you give us. If you have any questions or concerns regarding our privacy policy please contact me.'
		+'<br />'
		+'<br />'
        +'Jenny Mayhew'
		+'<br />'
		+'Customer Support Manager,'
		+'<br />'
		+'Anson Reed Ltd,'
		+'<br />'+'145-157 St Johns Street,'
		+'<br />'
		+'London EC1V 4PY.'
		+'</span>'
		+'<br />'
		+'<br />'
		+'</div><!--divMain-->'
		

		+'<div id="divMailsent" style="padding:0px 0px 0px 0px; margin:15px 0px 0px 0px; width:430px; display:none">'
		+'<h2>Thank you for your enquiry</h2>'
		+'<br />'
		+'<span class="txt_11">We respond to all emails within 1 hour '
		+'if during our normal opening hours - Monday to Friday 9am to 6pm.<br />'
		+'<br />'
		+'Emails are monitored at all other times and response will be within 24 hours.<br />'
		+'<br />'		
		+'The InterviewGOLD&trade; Support Team</a></div>'
		+'<br />'		
		+'<div class="more"><a class="link" href="javascript:;" onclick="cClick()">Close</a></div>'
		+'</span>'
		+'</div>'
		+' </div><br clear="all"/>'
		+'</div>'
		+'</div><!-- container -->';
}

function iframepopprv()
{	
	opacity('maindiv', 100, 50, 400);
	
	setTimeout(overlib(sethtmlForm(),
 WRAP, TEXTPADDING,0, BORDER,4, STICKY, CLOSECLICK,
 WIDTH,620, HEIGHT, 370, CAPTIONPADDING,1, CAPTION,"Privacy Policy",
 MIDX,0, MIDY,0, 
 STATUS,"Contact Form, caption and Close link"),400);
	
	
	
}

function sendContact()
{
	if(!checkValidity(['yourname', 'youremail', 'yourmessage']) || !checkEmail('youremail'))
		return;
	

	getelem('divLoader').style.display = 'block';

	$.post('sendmail.php', 
		{
			name:getElemByName('yourname').value,
			email:getElemByName('youremail').value, 
			telephone:getElemByName('yourphone').value, 
			message:getElemByName('yourmessage').value
		},
		function(data)
		{	
			getelem('divLoader').style.display = 'none';						
			getelem('divMain').style.display = 'none';
			
			if(data.indexOf('success')>-1)
				getelem('divMailsent').style.display = 'block';
			else
			{
				getelem('divMailsent').style.display = 'block';
				getelem('divMailsent').innerHTML = '<span class="txt_5">Sorry problem sending mail. Please try later.</span>';
			}
			
		}
	)
}


function opacity(id, opacStart, opacEnd, millisec) {
    //speed for each frame
    var speed = Math.round(millisec / 100);
    var timer = 0;

    //determine the direction for the blending, if start and end are the same nothing happens
    if(opacStart > opacEnd) {
        for(i = opacStart; i >= opacEnd; i--) {
            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
            timer++;
        }
    } else if(opacStart < opacEnd) {
        for(i = opacStart; i <= opacEnd; i++)
            {
            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
            timer++;
        }
    }
}

//change the opacity for different browsers
function changeOpac(opacity, id) {
    var object = document.getElementById(id).style;
    object.opacity = (opacity / 100);
    object.MozOpacity = (opacity / 100);
    object.KhtmlOpacity = (opacity / 100);
    object.filter = "alpha(opacity=" + opacity + ")";
} 
-->