<?php echo showSectionHead($spTextKeyword['Import Keywords']); ?>
<form id="newKeyword">
<input type="hidden" name="sec" value="import"/>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
<tr class="listHead">
<td class="left" width='30%'><?=$spTextKeyword['Import Keywords']?></td>
<td class="right"> </td>
</tr>
<tr class="blue_row">
<td class="td_left_col"><?=$spText['common']['Website']?>:</td>
<td class="td_right_col">
<select name="website_id" id="website_id" onchange="doLoad('website_id', 'websites.php', 'weburlarea', 'sec=updateurl')">
<?php foreach($websiteList as $websiteInfo){?>
<?php if($websiteInfo['id'] == $post['website_id']){
$websiteUrl = $websiteInfo['url'];
?>
<option value="<?=$websiteInfo['id']?>" selected><?=$websiteInfo['name']?></option>
<?php }else{?>
<option value="<?=$websiteInfo['id']?>"><?=$websiteInfo['name']?></option>
<?php }?>
<?php }?>
</select>
<span id="weburlarea"><input type="hidden" name="weburl" id="weburl" value="<?=$websiteUrl?>"></span>
<a style="text-decoration: none;" href="javascript:void(0);" onclick="crawlMetaData('websites.php?sec=crawlmeta&keyinput=keywords', 'crawlstats')">«« <?=$spText['common']['Crawl Meta Data']?></a>
<div id="crawlstats" style="float: right;padding-right:100px;"></div>
<?=$errMsg['website_id']?>
</td>
</tr>
<tr class="white_row">
<td class="td_left_col"><?=$spText['common']['lang']?>:</td>
<td class="td_right_col">
<?php echo $this->render('language/languageselectbox', 'ajax'); ?>
</td>
</tr>
<tr class="blue_row">
<td class="td_left_col"><?=$spText['common']['Country']?>:</td>
<td class="td_right_col">
<?php echo $this->render('country/countryselectbox', 'ajax'); ?>
</td>
</tr>
<?php $post['searchengines'] = is_array($post['searchengines']) ? $post['searchengines'] : array(); ?>
<tr class="white_row">
<td class="td_left_col"><?=$spText['common']['Search Engine']?>:</td>
<td class="td_right_col">
<select name="searchengines[]" class="multi" multiple="multiple" id="searchengines">
<?php foreach($seList as $seInfo){?>
<?php $selected = in_array($seInfo['id'], $post['searchengines']) ? "selected" : ""?>
<option value="<?=$seInfo['id']?>" <?=$selected?>><?=$seInfo['domain']?></option>
<?php }?>
</select>
<?=$errMsg['searchengines']?>
<br>
<input type="checkbox" id="select_all" onclick="selectAllOptions('searchengines', true); $('clear_all').checked=false;"> <?=$spText['label']['Select All']?>
<input type="checkbox" id="clear_all" onclick="selectAllOptions('searchengines', false); $('select_all').checked=false;"> <?=$spText['label']['Clear All']?>
</td>
</tr>
<tr class="white_row">
<td class="td_left_col"><?=$spText['common']['Keywords']?>:</td>
<td class="td_right_col">
<textarea name="keywords" rows="10" id="webkeywords"><?=$post['keywords']?></textarea><?=$errMsg['keywords']?>
<p style="font-size: 12px;"><?=$spTextKeyword['Insert keywords separated with comma']?></p>
<P><b>Eg:</b> google seo tools,seo tools,seo</P>
</td>
</tr>
<tr class="blue_row">
<td class="tab_left_bot_noborder"></td>
<td class="tab_right_bot"></td>
</tr>
<tr class="listBot">
<td class="left" colspan="1"></td>
<td class="right"></td>
</tr>
</table>
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="actionSec">
<tr>
<td style="padding-top: 6px;text-align:right;">
<a onclick="scriptDoLoad('keywords.php', 'content')" href="javascript:void(0);" class="actionbut">
<?=$spText['button']['Cancel']?>
</a>
<?php $actFun = SP_DEMO ? "alertDemoMsg()" : "scriptDoLoadPost('keywords.php', 'newKeyword', 'content')"; ?>
<a onclick="<?=$actFun?>" href="javascript:void(0);" class="actionbut">
<?=$spText['button']['Proceed']?>
</a>
</td>
</tr>
</table>
</form>