I get this essage when trying to open an embedded YouTube video or similiar..
"Operation Aborted!
Internet Explorer could not open this window"
Only does it on IE and AOL and I'm assuming AOL uses the same browser

I remember getting this error on a bit of code i had ages ago in a form that looked something like so..
<form action="go.asp" method="post">
<p> <b>ID: </b><input name="id" size="25" value="" maxlength="12"></p>
<p align="left" id="rom"></p>
<script type="text/javascript">
time = 60;
function download() {
if (time == 0) {
document.getElementById("rom").innerHTML='<input type="submit" style="font: 8pt verdana" value="Go"> <input type="reset" style="font: 8pt verdana" value="Reset">';
}
if (time > 0) {
document.getElementById("rom").innerHTML='<font size="2">Please wait. Your link will appear in ' + time + ' seconds</font>';
setTimeout('download()',1000);
}
time--;
}
download();
</script>
</form>
That code does exactly the same and after months of trying to figure out i gave up and now I am getting the same with the embedding thing on the forums. I'm assuming it is something to do with the inner HTML of when it is being embedded into the page? thanks.