﻿var win = null; function NewWindow(a, b, w, h, c, d) { if (d == "random") { LeftPosition = (screen.width) ? Math.floor(Math.random() * (screen.width - w)) : 100; TopPosition = (screen.height) ? Math.floor(Math.random() * ((screen.height - h) - 75)) : 100 } if (d == "center") { LeftPosition = (screen.width) ? (screen.width - w) / 2 : 100; TopPosition = (screen.height) ? (screen.height - h) / 2 : 100 } else if ((d != "center" && d != "random") || d == null) { LeftPosition = 0; TopPosition = 20 } settings = 'width=' + w + ',height=' + h + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + c + ',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no'; win = window.open(a, b, settings) } $(function() { if ($('#flash_holder').length == 0) $('body').append('<div id="flash_holder" style="display:none;"/>'); $('a[href*=".swf"]').click(function() { $('#flash_holder').flash({ src: $(this).attr('href'), width: 800, height: 600 }); NewWindow('', 'newwindow', '810', '620', 'no', 'center'); win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>'); win.document.write($(this).html()); win.document.write('</title></head><body bgcolor="#000000"><div style="text-align: center;">'); win.document.write($('#flash_holder').html()); win.document.write('</div></body></html>'); win.document.close(); return false }) });