<script type="text/javascript"> $(document).ready(function(){ var guildName = "The Guild Name"; var realm = "Arathor"; var useFrame = true; var frameWidth = "100%"; var frameHeight = "600"; /****************************** Don't change anything below ******************************/ $('.wowcharcal').click(function(){ var f, name = prompt("Please enter your charcter name",""); if ( name != null && name != '' ){ if (useFrame) { f = "<iframe width=\"" + frameWidth + "\" height=\"" + frameHeight + "\" src=\"http://www.wowarmory.com/vault/character-calendar.xml?r=" + realm.replace(/\s/g,'+') + "&gn=" + guildName.replace(/\s/g,'+') + "&cn=" + name + "\" scrolling=\"auto\" frameborder=\"0\" align=\"top\" " + "allowtransparency=\"true\"></iframe>"; $('.wowcal').html(f); } else { f = "http://www.wowarmory.com/vault/character-calendar.xml?r=" + realm.replace(/\s/g,'+') + "&cn=" + name + "&gn=" + guildName.replace(/\s/g,'+') window.open(f); } } return false; }); }); </script> <div class="wowcal" style="text-align:center"> <a class="wowcharcal" href="#"><img alt="" src="http://www.axiomfiles.com/Files/278466/icon-armory.png" /></a> <br /> <div>Click on the image above , type your character name in the prompt, then login and it will take you straight to the calendar for that character.</div> </div>