Detect web plug-ins Flash, Media PLayer and more…

Cut & Paste Detect Plugin (Flash, Java, RealPlayer etc) script Credit: Frederic Description: Frederic’s versatile plugin detector can be used to detect most of the important browser plugins. They include: – Flash – Windows Media Player – Java – Shockwave – RealPlayer – QuickTime – Acrobat Reader – SVG Viewer Working in both IE and …

How to Redirect a Web Page

301 Redirect 301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It’s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it’s the safest option. The code “301” is interpreted as …

Add this page to Favorites

Add this page to Favorites <span style=’cursor:hand;text-decoration:underline;’onclick=’window.external.AddFavorite(location.href,document.title);’> Click here to add this page to your favorites</span> Add another page to Favorites <a href=”javascript:window.external.addFavorite(‘http://www.prosoxi.gr’,’Prosoxi’);”> Click here to add the homepage to your favorites!</a>

Open / Close Pop Up window

The HEAD of the Page put the follow script <script type=”text/javascript”> function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } </script> Open window Script <a  href=”#” onmousedown=”MM_openBrWindow(‘page_path.php’,’gallery’,’scrollbars=yes,resizable=yes,width=600,height=500′)” >Open Window</a> Close window Script (inside page_path.php ) <a href=”#” onclick=”javascript:self.close(); “>Close Window</a> Close window popup and reload parent Page (inside page_path.php ) <a href=”#” onclick=”window.opener.window.location.reload(true);window.self.close()”>Close Window</a>