
function popUpWindowNoToolBars(url, title, height, width)
{
window.open(url, null, 'toolbar=no,menubar=no,width=' + width + 'px,height=' + height + 'px'); 
}
function popUpWithScrollBars(url, title, height, width)
{
window.open(url, null, 'toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=' + width + 'px,height=' + height + 'px'); 
}
function embedObject(content)
{
document.write(content);
}