// JavaScript Document
function loadPage(url,wid,hig)
{
	document.getElementById('aj').innerHTML = "<iframe allowtransparency='true'  src='"+url+"' frameborder='no' width='"+wid+"' height='"+hig+"'></iframe>";
}

function poponload(url,wid,hig)
{
testwindow= window.open (url, "mywindow","left=10,top=10,scrollbars=no,resizable=no',width="+wid+",height="+hig);
testwindow.moveTo(0,0);
}
