Snippet
function new_win(id)
{
var m = document.getElementById(id);
if(m != null)
{
var source = m.src;
source = document.domain + source; //most webpages will use dynamic linking, if they don't remove document.domain
window.open(source,'Media_Window','width='+m.width+',height='+m.height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no');
}
}
Copy & Paste
|