//shortcode
function mega_shortcode( $atts, $content = null ) {
return '<span class="mega">
<script>function goNewWin() {
// Set height and width
var NewWinHeight=650;
var NewWinWidth=550;
// Place the window
var NewWinPutX=10;
var NewWinPutY=10;
//Get what is below onto one line
TheNewWin =window.open("' . $content . '", "TheNewpop",
"fullscreen=yes","toolbar=no","location=no","directories=no",
"status=no","menubar=no","scrollbars=no","resizable=no");
//Get what is above onto one line
TheNewWin.resizeTo(NewWinHeight,NewWinWidth);
TheNewWin.moveTo(NewWinPutX,NewWinPutY);
}</script>
<FORM>
<input style="height:30px; width:150; font-weight:bold;" type="button" VALUE="Abrir enlaces de MEGA" onClick="goNewWin()">
</FORM>
</span>';
}
add_shortcode( 'mg', 'mega_shortcode' );