
function mete_iframe(frameu,x,y,col,frameid,a,b)
{
if (frameid == 'vanglaplaneet_uudised'){
var y = 1250;

py = (x*0.2066666666666667);
vy = (x*0.5625 + parseInt(25)) ;
yy = Math.round(py + vy + parseInt(y)) ;


filePath = 'http://www.meeitahaeurot.com/vp.php?x='+x+'&y='+y+'&col='+col+'';
}
else{
yy= y;
filePath = frameu+'?x='+x+'&y='+y+'&col='+col+'';
}



// Setup the iframe target
var iframe='<iframe id="'+frameid+'" frameborder="no" scrolling="no"></iframe>'; 
// Write the iframe to the page
document.write(iframe);

var myIframe = parent.document.getElementById(frameid);


myIframe.height = yy;
myIframe.width = x;

myIframe.src = filePath;
// set the style of the iframe
myIframe.style.border = "none";
myIframe.style.padding = "0px";


}
