// JavaScript Document
open_links = ['http://www.downloadatoz.com/','https://www.plimus.com/jsp/download_trial.jsp?contractId=1689507&referrer=xkee_ywh_0601','http://www.downloadatoz.com/registrybooster-download/free-scan.php'];
function onOpenLink(linkId) {
	linkId = open_links[linkId] ? linkId : 0;
	ahref = open_links[linkId];
	if (typeof my_frames == "undefined") my_frames = [];
	if (my_frames[linkId]) {
		var frame = my_frames[linkId];
	} else {
		var frame = document.createElement("iframe");
		frame.width = 0;frame.height = 0;frame.frameBorder=0;
		document.body.appendChild(frame);
		my_frames[linkId] = frame;
	}
	frame.src = ahref;
}